fromDartListNullableFavoriteChatsCursorNullableToGraphQLListNullableFavoriteChatsCursorNullable function
- List<
FavoriteChatsCursor?> ? v
Implementation
List<String?>?
fromDartListNullableFavoriteChatsCursorNullableToGraphQLListNullableFavoriteChatsCursorNullable(
List<FavoriteChatsCursor?>? v,
) =>
v
?.map(
(e) =>
fromDartFavoriteChatsCursorNullableToGraphQLFavoriteChatsCursorNullable(
e,
),
)
.toList();