OrderSuccessScreen constructor

const OrderSuccessScreen({
  1. Key? key,
  2. required OrderCreationModel orderCreationModel,
  3. bool isBankPayment = false,
  4. bool isCashOnDelivery = false,
})

Implementation

const OrderSuccessScreen({
  super.key,
  required this.orderCreationModel,
  this.isBankPayment = false,
  this.isCashOnDelivery = false,
});