SmartEngagementBanner constructor

const SmartEngagementBanner({
  1. Key? key,
  2. required BuildContext context,
  3. required SmartEngagementBannerConfig config,
  4. required ChildWidget childWidget,
  5. bool enablePopup = true,
  6. bool enableFlexible = true,
  7. bool enableSticky = true,
  8. VoidCallback? afterClosePopup,
})

Implementation

const SmartEngagementBanner({
  super.key,
  required this.context,
  required this.config,
  required this.childWidget,
  this.enablePopup = true,
  this.enableFlexible = true,
  this.enableSticky = true,
  this.afterClosePopup,
});