unblur method

T unblur({
  1. Duration? delay,
  2. Duration? duration,
  3. Curve? curve,
  4. double? begin = defaultBlur,
  5. double? end = 0,
})

Adds an .unblur() extension to AnimateManager (Animate and AnimateList). This is identical to the .blur() extension, except it defaults to begin=4, end=0.

Implementation

T unblur({
  Duration? delay,
  Duration? duration,
  Curve? curve,
  double? begin = defaultBlur,
  double? end = 0,
}) =>
    addEffect(BlurEffect(
      delay: delay,
      duration: duration,
      curve: curve,
      begin: begin,
      end: end,
    ));