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