fromDartListNullableChatContactVersionToGraphQLListNullableChatContactVersion function
Implementation
List<String>?
fromDartListNullableChatContactVersionToGraphQLListNullableChatContactVersion(
List<ChatContactVersion>? v,
) =>
v
?.map((e) => fromDartChatContactVersionToGraphQLChatContactVersion(e))
.toList();