fromDartListChatItemVersionNullableToGraphQLListChatItemVersionNullable function

List<String?> fromDartListChatItemVersionNullableToGraphQLListChatItemVersionNullable(
  1. List<ChatItemVersion?> v
)

Implementation

List<String?>
fromDartListChatItemVersionNullableToGraphQLListChatItemVersionNullable(
  List<ChatItemVersion?> v,
) =>
    v
        .map(
          (e) =>
              fromDartChatItemVersionNullableToGraphQLChatItemVersionNullable(
                e,
              ),
        )
        .toList();