fromGraphQLCountryCodeNullableToDartCountryCodeNullable function

CountryCode? fromGraphQLCountryCodeNullableToDartCountryCodeNullable(
  1. String? v
)

Implementation

CountryCode? fromGraphQLCountryCodeNullableToDartCountryCodeNullable(
  String? v,
) => v == null ? null : CountryCode(v);