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