fromDartListChatContactVersionToGraphQLListChatContactVersion function

List<String> fromDartListChatContactVersionToGraphQLListChatContactVersion(
  1. List<ChatContactVersion> v
)

Implementation

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