fromGraphQLUserTextStatusNullableToDartUserTextStatusNullable function

UserTextStatus? fromGraphQLUserTextStatusNullableToDartUserTextStatusNullable(
  1. String? v
)

Implementation

UserTextStatus? fromGraphQLUserTextStatusNullableToDartUserTextStatusNullable(
  String? v,
) => v == null ? null : UserTextStatus.unchecked(v);