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