fromGraphQLListChatIdNullableToDartListChatIdNullable function
Implementation
List<ChatId?> fromGraphQLListChatIdNullableToDartListChatIdNullable(
List<Object?> v,
) =>
v
.map((e) => fromGraphQLChatIdNullableToDartChatIdNullable(e as String?))
.toList();