Blur constructor

const Blur({
  1. Key? key,
  2. required Widget child,
  3. double blur = 5,
  4. Color blurColor = Colors.white,
  5. BorderRadius? borderRadius,
  6. double colorOpacity = 0.5,
  7. Widget? overlay,
  8. AlignmentGeometry alignment = Alignment.center,
})

Implementation

const Blur({
  Key? key,
  required this.child,
  this.blur = 5,
  this.blurColor = Colors.white,
  this.borderRadius,
  this.colorOpacity = 0.5,
  this.overlay,
  this.alignment = Alignment.center,
}) : super(key: key);