fromGraphQLListNullableFavoriteChatsCursorNullableToDartListNullableFavoriteChatsCursorNullable function
Implementation
List<FavoriteChatsCursor?>?
fromGraphQLListNullableFavoriteChatsCursorNullableToDartListNullableFavoriteChatsCursorNullable(
List<Object?>? v,
) =>
v
?.map(
(e) =>
fromGraphQLFavoriteChatsCursorNullableToDartFavoriteChatsCursorNullable(
e as String?,
),
)
.toList();