StatusBar constructor

StatusBar({
  1. List<Widget> items = const [],
  2. Widget? leading,
  3. Widget? trailing,
  4. Color? background,
  5. Color? foreground,
  6. EdgeInsets? padding,
  7. String? separator,
  8. int gap = 2,
  9. Key? key,
})

Implementation

StatusBar({
  this.items = const [],
  this.leading,
  this.trailing,
  this.background,
  this.foreground,
  this.padding,
  this.separator,
  this.gap = 2,
  super.key,
});