fromGraphQLFavoriteChatsCursorNullableToDartFavoriteChatsCursorNullable function

FavoriteChatsCursor? fromGraphQLFavoriteChatsCursorNullableToDartFavoriteChatsCursorNullable(
  1. String? v
)

Implementation

FavoriteChatsCursor?
fromGraphQLFavoriteChatsCursorNullableToDartFavoriteChatsCursorNullable(
  String? v,
) => v == null ? null : FavoriteChatsCursor(v);