InvoiceCancellation constructor

InvoiceCancellation({
  1. required String reason,
  2. required String canceledSerialInvoiceNumber,
  3. required ZATCAPaymentMethods paymentMethod,
})

Creates a new InvoiceCancellation instance.

Implementation

InvoiceCancellation({
  required this.reason,
  required this.canceledSerialInvoiceNumber,
  required this.paymentMethod,
});