Blur constructor
const
Blur({
- Key? key,
- required Widget child,
- double blur = 5,
- Color blurColor = Colors.white,
- BorderRadius? borderRadius,
- double colorOpacity = 0.5,
- Widget? overlay,
- 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);