fromGraphQLChatContactsCursorNullableToDartChatContactsCursorNullable function

ChatContactsCursor? fromGraphQLChatContactsCursorNullableToDartChatContactsCursorNullable(
  1. String? v
)

Implementation

ChatContactsCursor?
fromGraphQLChatContactsCursorNullableToDartChatContactsCursorNullable(
  String? v,
) => v == null ? null : ChatContactsCursor(v);