SumupCheckoutResponse constructor

SumupCheckoutResponse({
  1. required bool success,
  2. String? transactionCode,
  3. double? amount,
  4. String? currency,
  5. double? vatAmount,
  6. double? tipAmount,
  7. String? paymentType,
  8. String? entryMode,
  9. int? installments,
  10. String? cardType,
  11. String? cardLastDigits,
})

Implementation

SumupCheckoutResponse({
  required this.success,
  this.transactionCode,
  this.amount,
  this.currency,
  this.vatAmount,
  this.tipAmount,
  this.paymentType,
  this.entryMode,
  this.installments,
  this.cardType,
  this.cardLastDigits,
});