fadeOut method
Decreases the weight of this action gradually from 1
to
0
, within the passed time interval. This method can be chained.
Implementation
AnimationAction fadeOut(num duration) {
return scheduleFading(duration, 1, 0);
}
Decreases the weight of this action gradually from 1
to
0
, within the passed time interval. This method can be chained.
AnimationAction fadeOut(num duration) {
return scheduleFading(duration, 1, 0);
}