fromDartListNullableChatItemVersionToGraphQLListNullableChatItemVersion function

List<String>? fromDartListNullableChatItemVersionToGraphQLListNullableChatItemVersion(
  1. List<ChatItemVersion>? v
)

Implementation

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