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