SendPaymentForm constructor

const SendPaymentForm({
  1. required int chatId,
  2. required int messageId,
  3. required int paymentFormId,
  4. required String orderInfoId,
  5. required String shippingOptionId,
  6. required InputCredentials credentials,
  7. required int tipAmount,
})

Sends a filled-out payment form to the bot for final verification

Implementation

const SendPaymentForm({
  required this.chatId,
  required this.messageId,
  required this.paymentFormId,
  required this.orderInfoId,
  required this.shippingOptionId,
  required this.credentials,
  required this.tipAmount,
});