fromDartListNullableChatItemsCursorNullableToGraphQLListNullableChatItemsCursorNullable function
- List<
ChatItemsCursor?> ? v
Implementation
List<String?>?
fromDartListNullableChatItemsCursorNullableToGraphQLListNullableChatItemsCursorNullable(
List<ChatItemsCursor?>? v,
) => v
?.map(
(e) => fromDartChatItemsCursorNullableToGraphQLChatItemsCursorNullable(e),
)
.toList();