DebitRequest constructor

DebitRequest(
  1. String? memberId,
  2. String? giftCardNo,
  3. String orderId,
  4. int? numPpl,
  5. String? tixNo,
  6. String? tableNo,
  7. int serviceType,
  8. String staffName,
  9. int subtotalInCents,
  10. int taxInCents,
  11. int tipInCents,
  12. int discInCents,
  13. int serviceChargeInCents,
  14. int amtInCents,
  15. int bagFeeInCents,
  16. List<CashBackAppliedResponse> appliedCashbacks,
  17. Map<PayType, int>? paymentByTypes,
)

Implementation

DebitRequest(
    this.memberId,
    this.giftCardNo,
    this.orderId, this.numPpl, this.tixNo, this.tableNo, this.serviceType,
    this.staffName,
    this.subtotalInCents,
    this.taxInCents,
    this.tipInCents,
    this.discInCents,
    this.serviceChargeInCents, this.amtInCents,
    this.bagFeeInCents,
    this.appliedCashbacks,
    this.paymentByTypes,
    );