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