fromDartListNullableChatItemVersionToGraphQLListNullableChatItemVersion function
- List<
ChatItemVersion> ? v
Implementation
List<String>?
fromDartListNullableChatItemVersionToGraphQLListNullableChatItemVersion(
List<ChatItemVersion>? v,
) => v?.map((e) => fromDartChatItemVersionToGraphQLChatItemVersion(e)).toList();