toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final costType = this.costType;
final feeAmount = this.feeAmount;
final feePercentageMillis = this.feePercentageMillis;
final feeType = this.feeType;
final invoiceType = this.invoiceType;
return {
'costType': ?costType,
'feeAmount': ?feeAmount,
'feePercentageMillis': ?feePercentageMillis,
'feeType': ?feeType,
'invoiceType': ?invoiceType,
};
}