AccentPanel constructor

AccentPanel({
  1. required Widget child,
  2. Color? accentColor,
  3. int? accentWidth,
  4. String? accentChar,
  5. AccentSide side = AccentSide.left,
  6. Color? background,
  7. Color? foreground,
  8. EdgeInsets? padding,
  9. String? title,
  10. Style? titleStyle,
  11. bool? expanded,
  12. ValueCmdCallback<bool>? onExpandChanged,
  13. Key? key,
})

Implementation

AccentPanel({
  required this.child,
  this.accentColor,
  this.accentWidth,
  this.accentChar,
  this.side = AccentSide.left,
  this.background,
  this.foreground,
  this.padding,
  this.title,
  this.titleStyle,
  this.expanded,
  this.onExpandChanged,
  super.key,
});