StatusLine constructor

StatusLine({
  1. List<StatusItem> left = const [],
  2. List<StatusItem> center = const [],
  3. List<StatusItem> right = const [],
  4. Color? background,
  5. Color? foreground,
  6. EdgeInsets? padding,
  7. String? separator,
  8. int gap = 1,
  9. Key? key,
})

Implementation

StatusLine({
  this.left = const [],
  this.center = const [],
  this.right = const [],
  this.background,
  this.foreground,
  this.padding,
  this.separator,
  this.gap = 1,
  super.key,
});