Servicechargedescription.fromJson constructor

Servicechargedescription.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory Servicechargedescription.fromJson(Map<String, dynamic> json) => Servicechargedescription(
  percentage: json["Percentage"]?.toDouble(),
  percentageAmount: json["PercentageAmount"]?.toDouble(),
  minCommissionAmount: json["MinCommissionAmount"]?.toDouble(),
  orderCommission: json["orderCommission"]?.toDouble(),
  fixedCommssion: json["FixedCommssion"],
);