Refund constructor

Refund({
  1. Money? amountMoney,
  2. String? locationId,
  3. String? createdAt,
  4. String? id,
  5. RefundStatus? status,
  6. String? transactionId,
  7. List<AdditionalRecipient>? additionalRecipients,
  8. Money? processingFeeMoney,
  9. String? reason,
  10. String? tenderId,
})

Implementation

Refund(
    {this.amountMoney,
    this.locationId,
    this.createdAt,
    this.id,
    this.status,
    this.transactionId,
    this.additionalRecipients,
    this.processingFeeMoney,
    this.reason,
    this.tenderId});