defaultAnimationDuration constant

Duration const defaultAnimationDuration

The default duration for one full cycle of the indeterminate animation.

During this period, the indicator completes several full rotations.

This duration is used when the widget creates its own AnimationController because no controller was provided, either directly or through a ProgressIndicatorTheme.

Implementation

static const Duration defaultAnimationDuration = Duration(
  milliseconds: _kIndeterminateCircularDuration,
);