fromGraphQLCurrencyNullableToDartCurrencyNullable function

Currency? fromGraphQLCurrencyNullableToDartCurrencyNullable(
  1. String? v
)

Implementation

Currency? fromGraphQLCurrencyNullableToDartCurrencyNullable(String? v) =>
    v == null ? null : Currency(v);