animationFactor property

double animationFactor

Implementation

double get animationFactor => _animationFactor;
void animationFactor=(double value)

Implementation

set animationFactor(double value) {
  if (_animationFactor != value) {
    _oldAnimationFactor = _animationFactor;
    _animationFactor = value;
  }
}