MessagePaymentSuccessfulBot constructor

MessagePaymentSuccessfulBot({
  1. required String currency,
  2. required int totalAmount,
  3. required int subscriptionUntilDate,
  4. required bool isRecurring,
  5. required bool isFirstRecurring,
  6. required String invoicePayload,
  7. String? shippingOptionId,
  8. OrderInfo? orderInfo,
  9. required String telegramPaymentChargeId,
  10. required String providerPaymentChargeId,
})

Implementation

MessagePaymentSuccessfulBot({
  required this.currency,
  required this.totalAmount,
  required this.subscriptionUntilDate,
  required this.isRecurring,
  required this.isFirstRecurring,
  required this.invoicePayload,
  this.shippingOptionId,
  this.orderInfo,
  required this.telegramPaymentChargeId,
  required this.providerPaymentChargeId,
});