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