Blur constructor

const Blur({
  1. Widget? child,
  2. double? height,
  3. double? width,
  4. double blur = 5,
  5. double elevation = 0,
  6. EdgeInsetsGeometry padding = const EdgeInsets.only(),
  7. Color color = Colors.transparent,
  8. BorderRadius? borderRadius,
  9. Clip clipBehavior = Clip.antiAlias,
  10. Key? key,
})

Implementation

const Blur({
  this.child,
  this.height,
  this.width,
  this.blur = 5,
  this.elevation = 0,
  this.padding = const EdgeInsets.only(),
  this.color = Colors.transparent,
  this.borderRadius,
  this.clipBehavior = Clip.antiAlias,
  super.key,
});