fadeToRight static method

MotionWidgetBuilder fadeToRight([
  1. double factor = 1.0
])

Combination of slideToRight and fadeOut.

Implementation

static MotionWidgetBuilder fadeToRight([double factor = 1.0]) => combine(
      [
        slideToRight(factor: factor),
        fadeOut,
      ],
    );