Refund constructor

const Refund({
  1. String? status,
  2. RefundStatus? statusDetails,
  3. String? id,
  4. Money? amount,
  5. String? invoiceId,
  6. String? noteToPayer,
  7. String? sellerPayableBreakdown,
  8. String? createTime,
  9. String? updateTime,
  10. List<LinkDescription>? links,
})

Implementation

const Refund({
  this.status,
  this.statusDetails,
  this.id,
  this.amount,
  this.invoiceId,
  this.noteToPayer,
  this.sellerPayableBreakdown,
  this.createTime,
  this.updateTime,
  this.links,
});