fade static method

void fade(
  1. double from,
  2. double to,
  3. Duration duration,
  4. Curve curve,
)

Implementation

static void fade(double from, double to, Duration duration, Curve curve) =>
    log('🌗 fade from $from to $to over ${duration.inMilliseconds}ms using ${curve.runtimeType}');