fromDartListChatContactIdToGraphQLListChatContactId function

List<String> fromDartListChatContactIdToGraphQLListChatContactId(
  1. List<ChatContactId> v
)

Implementation

List<String> fromDartListChatContactIdToGraphQLListChatContactId(
  List<ChatContactId> v,
) => v.map((e) => fromDartChatContactIdToGraphQLChatContactId(e)).toList();