fromGraphQLListChatItemIdNullableToDartListChatItemIdNullable function
Implementation
List<ChatItemId?> fromGraphQLListChatItemIdNullableToDartListChatItemIdNullable(
List<Object?> v,
) => v
.map(
(e) =>
fromGraphQLChatItemIdNullableToDartChatItemIdNullable(e as String?),
)
.toList();