fromGraphQLListNullableChatItemsCursorNullableToDartListNullableChatItemsCursorNullable function
Implementation
List<ChatItemsCursor?>?
fromGraphQLListNullableChatItemsCursorNullableToDartListNullableChatItemsCursorNullable(
List<Object?>? v,
) => v
?.map(
(e) => fromGraphQLChatItemsCursorNullableToDartChatItemsCursorNullable(
e as String?,
),
)
.toList();