WebAppViewPromotion constructor

const WebAppViewPromotion({
  1. Key? key,
  2. required String customerId,
  3. required String campaignHash,
  4. required String customerAccessToken,
  5. required VoidCallback onClose,
  6. bool showDebugButton = false,
  7. ValuesNotifier? pageLoadedNotifier,
  8. ErrorNotifier? pageErrorNotifier,
})

Implementation

const WebAppViewPromotion({
  super.key,
  required this.customerId,
  required this.campaignHash,
  required this.customerAccessToken,
  required this.onClose,
  this.showDebugButton = false,
  this.pageLoadedNotifier,
  this.pageErrorNotifier,
});