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