PopupHeaderWidget constructor

const PopupHeaderWidget({
  1. Key? key,
  2. EdgeInsets? topLevelPadding,
  3. required String title,
  4. TextStyle? titleStyle,
  5. EdgeInsets? titleMargin,
  6. dynamic handleClickClose()?,
  7. IconData? titlePreIcon,
  8. Color? textColor,
})

Implementation

const PopupHeaderWidget({
  super.key,
  this.topLevelPadding,
  required this.title,
  this.titleStyle,
  this.titleMargin,
  this.handleClickClose,
  this.titlePreIcon,
  this.textColor,
});