fromGraphQLSessionIdNullableToDartSessionIdNullable function

SessionId? fromGraphQLSessionIdNullableToDartSessionIdNullable(
  1. String? v
)

Implementation

SessionId? fromGraphQLSessionIdNullableToDartSessionIdNullable(String? v) =>
    v == null ? null : SessionId(v);