Blur constructor

const Blur({
  1. double blur = 0.0,
  2. TileMode tileMode = TileMode.clamp,
  3. Clip clipBehavior = Clip.hardEdge,
  4. CustomClipper<Rect>? clipper,
  5. Widget? child,
  6. Key? key,
})

Implementation

const Blur({
  this.blur = 0.0,
  this.tileMode = TileMode.clamp,
  this.clipBehavior = Clip.hardEdge,
  this.clipper,
  this.child,
  Key? key,
}) : super(key: key);