stopFading method

AnimationAction stopFading()

Stops any scheduled page:.fadeIn fading which is applied to this action. This method can be chained.

Implementation

AnimationAction stopFading() {
  final weightInterpolant = _weightInterpolant;

  if (weightInterpolant != null) {
    _weightInterpolant = null;
    mixer.takeBackControlInterpolant(weightInterpolant);
  }

  return this;
}