StatusBarManager constructor

StatusBarManager({
  1. Key? key,
  2. required Widget child,
  3. required bool translucent,
  4. Color? statusBarColor,
  5. Brightness? statusBarIconBrightness,
  6. Brightness? statusBarBrightness,
  7. Color? navigationBarColor,
  8. Brightness? navigationBarBrightness,
  9. Color? navigationBarDividerColor,
})

Implementation

StatusBarManager({
  Key? key,
  required this.child,
  required this.translucent,
  this.statusBarColor,
  this.statusBarIconBrightness,
  this.statusBarBrightness,
  this.navigationBarColor,
  this.navigationBarBrightness,
  this.navigationBarDividerColor,
}) : super(key: key);