animationDuration property
double
get
animationDuration
Implementation
double get animationDuration => _animationDuration;
set
animationDuration
(double value)
Implementation
set animationDuration(double value) {
if (_animationDuration != value) {
_animationDuration = value;
if (parent != null) {
_initAnimations();
}
}
}