UpdateBotPrecheckoutQuery constructor

const UpdateBotPrecheckoutQuery({
  1. required int queryId,
  2. required int userId,
  3. required Uint8List payload,
  4. PaymentRequestedInfoBase? info,
  5. String? shippingOptionId,
  6. required String currency,
  7. required int totalAmount,
})

Update Bot Precheckout Query constructor.

Implementation

const UpdateBotPrecheckoutQuery({
  required this.queryId,
  required this.userId,
  required this.payload,
  this.info,
  this.shippingOptionId,
  required this.currency,
  required this.totalAmount,
}) : super._();