fadeIn method

AnimationAction fadeIn(
  1. num duration
)

Increases the page:.weight weight of this action gradually from 0 to 1, within the passed time interval. This method can be chained.

Implementation

AnimationAction fadeIn(num duration) {
  return scheduleFading(duration, 0, 1);
}