AdjustmentModel.fromJson constructor

AdjustmentModel.fromJson(
  1. 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"],
  );
}