fromDartListChatNameNullableToGraphQLListChatNameNullable function
Implementation
List<String?> fromDartListChatNameNullableToGraphQLListChatNameNullable(
List<ChatName?> v,
) =>
v.map((e) => fromDartChatNameNullableToGraphQLChatNameNullable(e)).toList();