OrderRefund constructor

OrderRefund({
  1. String? actor,
  2. Price? amount,
  3. String? creationDate,
  4. String? reason,
  5. String? reasonText,
})

Implementation

OrderRefund({
  this.actor,
  this.amount,
  this.creationDate,
  this.reason,
  this.reasonText,
});