FSidebarStyle constructor

const FSidebarStyle({
  1. required BoxDecoration decoration,
  2. required FSidebarGroupStyle groupStyle,
  3. BoxConstraints constraints = const .tightFor(width: 250),
  4. ImageFilter? backgroundFilter,
  5. EdgeInsetsGeometry headerPadding = const .fromLTRB(0, 16, 0, 0),
  6. EdgeInsetsGeometry contentPadding = const .symmetric(vertical: 12),
  7. EdgeInsetsGeometry footerPadding = const .fromLTRB(0, 0, 0, 16),
})

Creates a FSidebarStyle.

Implementation

const FSidebarStyle({
  required this.decoration,
  required this.groupStyle,
  this.constraints = const .tightFor(width: 250),
  this.backgroundFilter,
  this.headerPadding = const .fromLTRB(0, 16, 0, 0),
  this.contentPadding = const .symmetric(vertical: 12),
  this.footerPadding = const .fromLTRB(0, 0, 0, 16),
});