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