NeoWindowPanel constructor

const NeoWindowPanel({
  1. Key? key,
  2. required String title,
  3. required Widget child,
  4. Color? accentColor,
  5. Color? color,
  6. Color? shadowColor,
  7. EdgeInsetsGeometry padding = const EdgeInsets.all(24),
  8. bool showWindowDots = true,
  9. Widget? trailing,
})

Implementation

const NeoWindowPanel({
  super.key,
  required this.title,
  required this.child,
  this.accentColor,
  this.color,
  this.shadowColor,
  this.padding = const EdgeInsets.all(24),
  this.showWindowDots = true,
  this.trailing,
});