fromGraphQLChatItemsCursorNullableToDartChatItemsCursorNullable function

ChatItemsCursor? fromGraphQLChatItemsCursorNullableToDartChatItemsCursorNullable(
  1. String? v
)

Implementation

ChatItemsCursor?
fromGraphQLChatItemsCursorNullableToDartChatItemsCursorNullable(String? v) =>
    v == null ? null : ChatItemsCursor(v);