StatusBarScrim constructor

const StatusBarScrim({
  1. Key? key,
  2. required Widget child,
  3. Color? color,
  4. double opacity = 0.54,
  5. double appleBlur = 10.0,
})

Implementation

const StatusBarScrim({
  super.key,
  required this.child,
  this.color,
  this.opacity = 0.54,
  this.appleBlur = 10.0,
});