Tender constructor

Tender({
  1. String? type,
  2. Money? amountMoney,
  3. String? id,
  4. Money? processingFeeMoney,
  5. List<AdditionalRecipient>? additionalRecipients,
  6. String? transactionId,
  7. String? createdAt,
  8. String? locationId,
  9. Money? tipMoney,
  10. String? note,
  11. String? customerId,
  12. String? paymentId,
  13. TenderCardDetails? cardDetails,
  14. TenderCardDetails? cashDetails,
})

Implementation

Tender(
    {this.type,
    this.amountMoney,
    this.id,
    this.processingFeeMoney,
    this.additionalRecipients,
    this.transactionId,
    this.createdAt,
    this.locationId,
    this.tipMoney,
    this.note,
    this.customerId,
    this.paymentId,
    this.cardDetails,
    this.cashDetails});