WBlur constructor

const WBlur({
  1. Key? key,
  2. Widget? child,
  3. double sigma = 3.0,
  4. Color? color,
  5. BlendMode blendMode = BlendMode.darken,
  6. bool disabled = false,
})

Implementation

const WBlur({
  super.key,
  this.child,
  this.sigma = 3.0,
  this.color,
  this.blendMode = BlendMode.darken,
  this.disabled = false,
});