Servicechargedescription.fromJson constructor
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"],
);