WAnimatedBlur constructor

const WAnimatedBlur({
  1. Key? key,
  2. required Widget child,
  3. Duration delay = Duration.zero,
  4. Duration duration = const Duration(milliseconds: 1500),
  5. Curve curve = Curves.easeInCirc,
  6. double begin = 0.0,
  7. double end = 3.0,
  8. Color? color,
  9. BlendMode blendMode = BlendMode.darken,
  10. bool disabled = false,
})

Implementation

const WAnimatedBlur({
  super.key,
  required this.child,
  this.delay = Duration.zero,
  this.duration = const Duration(milliseconds: 1500),
  this.curve = Curves.easeInCirc,
  this.begin = 0.0,
  this.end = 3.0,
  this.color,
  this.blendMode = BlendMode.darken,
  this.disabled = false,
});