QudsAutoAnimatedBlur constructor

const QudsAutoAnimatedBlur({
  1. required Widget child,
  2. double intialBlurRadius = 10,
  3. Curve curve = Curves.fastLinearToSlowEaseIn,
  4. Duration duration = const Duration(milliseconds: 500),
  5. Duration startAnimationAfter = const Duration(milliseconds: 10),
  6. Key? key,
})

curve the curve of the transition velocity. duration the duration of the transition, initially set to 500 ms startAnimationAfter the duration before the initially shown icon to start transit.

Implementation

const QudsAutoAnimatedBlur(
    {required this.child,
    this.intialBlurRadius = 10,
    this.curve = Curves.fastLinearToSlowEaseIn,
    this.duration = const Duration(milliseconds: 500),
    this.startAnimationAfter = const Duration(milliseconds: 10),
    Key? key})
    : super(key: key);