fromGraphQLRecentChatsCursorNullableToDartRecentChatsCursorNullable function

RecentChatsCursor? fromGraphQLRecentChatsCursorNullableToDartRecentChatsCursorNullable(
  1. String? v
)

Implementation

RecentChatsCursor?
fromGraphQLRecentChatsCursorNullableToDartRecentChatsCursorNullable(
  String? v,
) => v == null ? null : RecentChatsCursor(v);