$LookupInvoiceCurrencyResponse.fromJson constructor

$LookupInvoiceCurrencyResponse.fromJson(
  1. Map json_
)

Implementation

$LookupInvoiceCurrencyResponse.fromJson(core.Map json_)
    : this(
        currencyCode: json_.containsKey('currencyCode')
            ? json_['currencyCode'] as core.String
            : null,
      );