Charge constructor

Charge({
  1. String? id,
  2. bool? isCharge,
  3. String? reason,
  4. double? percent,
  5. double? amount,
  6. double? base,
})

Implementation

Charge({
  this.id,
  this.isCharge,
  this.reason,
  this.percent,
  this.amount,
  this.base,
});