PartnerCost.fromJson constructor

PartnerCost.fromJson(
  1. Map json_
)

Implementation

PartnerCost.fromJson(core.Map json_)
  : this(
      costType: json_['costType'] as core.String?,
      feeAmount: json_['feeAmount'] as core.String?,
      feePercentageMillis: json_['feePercentageMillis'] as core.String?,
      feeType: json_['feeType'] as core.String?,
      invoiceType: json_['invoiceType'] as core.String?,
    );