duration property

Duration? get duration

The length of time this animation should last.

Setting this value while dormant preserves the duration and notifies listeners.

Implementation

Duration? get duration => _delegate.duration;
set duration (Duration? value)

Implementation

set duration(Duration? value) => _delegate.duration = value;