toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final price = this.price;
final regionCode = this.regionCode;
final taxAmount = this.taxAmount;
return {
'price': ?price,
'regionCode': ?regionCode,
'taxAmount': ?taxAmount,
};
}