fromGraphQLListChatContactIdToDartListChatContactId function
Implementation
List<ChatContactId> fromGraphQLListChatContactIdToDartListChatContactId(
List<Object?> v,
) =>
v
.map((e) => fromGraphQLChatContactIdToDartChatContactId(e as String))
.toList();