PaymentParameters constructor

PaymentParameters({
  1. required bool manualPaymentCart,
  2. required bool creditCardPaymentCart,
  3. required String? payTo,
  4. required String? country,
  5. required String? bankIdentifierCode,
  6. required String? payeeIBAN,
  7. required String? bankName,
})

Implementation

PaymentParameters({
  required this.manualPaymentCart,
  required this.creditCardPaymentCart,
  required this.payTo,
  required this.country,
  required this.bankIdentifierCode,
  required this.payeeIBAN,
  required this.bankName,
});