Servicechargedescription constructor

Servicechargedescription({
  1. double? percentage,
  2. double? percentageAmount,
  3. double? minCommissionAmount,
  4. double? orderCommission,
  5. int? fixedCommssion,
})

Implementation

Servicechargedescription({
  this.percentage,
  this.percentageAmount,
  this.minCommissionAmount,
  this.orderCommission,
  this.fixedCommssion,
});