duration property
override
How long this controller takes to complete, if known. double.infinity
if it never completes on its own.
Implementation
@override
double? get duration {
final childDuration = child.duration;
return childDuration == null ? null : childDuration * times;
}