SellInSuccessScreen constructor

const SellInSuccessScreen({
  1. Key? key,
  2. required String orderId,
  3. bool isPaymentFailed = false,
  4. bool isPaymentRefreshed = false,
  5. bool isPayAtStore = false,
  6. bool isSellthru = false,
})

Implementation

const SellInSuccessScreen({
  super.key,
  required this.orderId,
  this.isPaymentFailed = false,
  this.isPaymentRefreshed = false,
  this.isPayAtStore = false,
  this.isSellthru = false,
});