UnitInvoiceTaxLine.fromJson constructor

UnitInvoiceTaxLine.fromJson(
  1. Map json_
)

Implementation

UnitInvoiceTaxLine.fromJson(core.Map json_)
    : this(
        taxAmount: json_.containsKey('taxAmount')
            ? Price.fromJson(
                json_['taxAmount'] as core.Map<core.String, core.dynamic>)
            : null,
        taxName: json_.containsKey('taxName')
            ? json_['taxName'] as core.String
            : null,
        taxType: json_.containsKey('taxType')
            ? json_['taxType'] as core.String
            : null,
      );