Refund constructor

Refund({
  1. int? id,
  2. String? refund,
  3. String? total,
})

Implementation

Refund({
  this.id,
  this.refund,
  this.total,
});