NiceHighlightBox constructor

const NiceHighlightBox({
  1. Key? key,
  2. required Widget child,
  3. NiceHighlightType type = NiceHighlightType.info,
  4. IconData? icon,
  5. String? title,
  6. EdgeInsets? padding,
  7. bool showIcon = true,
})

Implementation

const NiceHighlightBox({
  super.key,
  required this.child,
  this.type = NiceHighlightType.info,
  this.icon,
  this.title,
  this.padding,
  this.showIcon = true,
});