duration property

Duration duration

The duration of the animation.

Implementation

Duration get duration => _controller.duration!;
void duration=(Duration value)

Implementation

set duration(Duration value) {
  if (value == _controller.duration) {
    return;
  }
  _controller.duration = value;
}