AdjustmentModel.fromJson constructor
AdjustmentModel.fromJson(
- dynamic json
Implementation
factory AdjustmentModel.fromJson(dynamic json) {
return AdjustmentModel(
orderAmount: json["orderAmount"],
cardFee: json["cardFee"],
vat: json["vat"],
serviceFee: json["serviceFee"],
incomeAmount: json["incomeAmount"],
);
}