duration property
The duration of the animation.
Implementation
Duration get duration => _controller.duration;
Implementation
set duration(Duration value) {
assert(value != null);
if (value == _controller.duration)
return;
_controller.duration = value;
}