fromGraphQLListChatContactIdToDartListChatContactId function

List<ChatContactId> fromGraphQLListChatContactIdToDartListChatContactId(
  1. List<Object?> v
)

Implementation

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