GetPaymentForm constructor

const GetPaymentForm({
  1. required int chatId,
  2. required int messageId,
  3. PaymentFormTheme? theme,
})

Returns an invoice payment form. This method must be called when the user presses inlineKeyboardButtonBuy

Implementation

const GetPaymentForm({
  required this.chatId,
  required this.messageId,
  this.theme,
});