fromDartListChatVersionNullableToGraphQLListChatVersionNullable function

List<String?> fromDartListChatVersionNullableToGraphQLListChatVersionNullable(
  1. List<ChatVersion?> v
)

Implementation

List<String?> fromDartListChatVersionNullableToGraphQLListChatVersionNullable(
  List<ChatVersion?> v,
) =>
    v
        .map((e) => fromDartChatVersionNullableToGraphQLChatVersionNullable(e))
        .toList();