fromGraphQLBlocklistCursorNullableToDartBlocklistCursorNullable function

BlocklistCursor? fromGraphQLBlocklistCursorNullableToDartBlocklistCursorNullable(
  1. String? v
)

Implementation

BlocklistCursor?
fromGraphQLBlocklistCursorNullableToDartBlocklistCursorNullable(String? v) =>
    v == null ? null : BlocklistCursor(v);