PanelBox constructor

PanelBox({
  1. required Widget child,
  2. String? title,
  3. List<Widget> actions = const [],
  4. EdgeInsets? padding,
  5. EdgeInsets? margin,
  6. Color? background,
  7. Color? foreground,
  8. Border? border,
  9. Color? borderColor,
  10. Style? titleStyle,
  11. Style? bodyStyle,
  12. Key? key,
})

Implementation

PanelBox({
  required this.child,
  this.title,
  this.actions = const [],
  this.padding,
  this.margin,
  this.background,
  this.foreground,
  this.border,
  this.borderColor,
  this.titleStyle,
  this.bodyStyle,
  super.key,
});