animationDuration property

double? animationDuration

Implementation

double? get animationDuration => _animationDuration;
void animationDuration=(double? value)

Implementation

set animationDuration(double? value) {
  if (_animationDuration != value) {
    _animationDuration = value;
  }
}