PaymentsSendPaymentForm constructor

const PaymentsSendPaymentForm({
  1. required int formId,
  2. required InputInvoiceBase invoice,
  3. String? requestedInfoId,
  4. String? shippingOptionId,
  5. required InputPaymentCredentialsBase credentials,
  6. int? tipAmount,
})

Payments Send Payment Form constructor.

Implementation

const PaymentsSendPaymentForm({
  required this.formId,
  required this.invoice,
  this.requestedInfoId,
  this.shippingOptionId,
  required this.credentials,
  this.tipAmount,
}) : super._();