UpdateNewPreCheckoutQuery constructor

UpdateNewPreCheckoutQuery({
  1. required int id,
  2. required int senderUserId,
  3. required String currency,
  4. required int totalAmount,
  5. required String invoicePayload,
  6. required String shippingOptionId,
  7. OrderInfo? orderInfo,
})

Implementation

UpdateNewPreCheckoutQuery({
  required this.id,
  required this.senderUserId,
  required this.currency,
  required this.totalAmount,
  required this.invoicePayload,
  required this.shippingOptionId,
  this.orderInfo,
});