fromDartListChatContactVersionNullableToGraphQLListChatContactVersionNullable function

List<String?> fromDartListChatContactVersionNullableToGraphQLListChatContactVersionNullable(
  1. List<ChatContactVersion?> v
)

Implementation

List<String?>
fromDartListChatContactVersionNullableToGraphQLListChatContactVersionNullable(
  List<ChatContactVersion?> v,
) => v
    .map(
      (e) =>
          fromDartChatContactVersionNullableToGraphQLChatContactVersionNullable(
            e,
          ),
    )
    .toList();