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