animateWidgetInsightReveal method

Widget animateWidgetInsightReveal({
  1. int delayMs = 0,
  2. int durationMs = 500,
  3. bool repeat = false,
  4. bool animate = true,
})
  1. Insight Reveal

Implementation

Widget animateWidgetInsightReveal(
    {int delayMs = 0,
    int durationMs = 500,
    bool repeat = false,
    bool animate = true}) {
  if (!animate) return this;
  return _baseAnimate(
    delayMs: delayMs,
    repeat: repeat,
  )
      .fadeIn(duration: durationMs.ms)
      .blurXY(begin: 10, end: 0)
      .slideX(begin: 0.1, end: 0);
}