StatusBar constructor

const StatusBar({
  1. Key? key,
  2. Widget? left,
  3. Widget? center,
  4. Widget? right,
  5. Color? backgroundColor,
  6. Color? foregroundColor,
  7. int height = 1,
})

Implementation

const StatusBar({
  super.key,
  this.left,
  this.center,
  this.right,
  this.backgroundColor,
  this.foregroundColor,
  this.height = 1,
});