indeterminate property
bool
get
indeterminate
Implementation
bool get indeterminate => _indeterminate;
Boolean whether the progress bar is deterministic.
Defaults to false
.
Implementation
@Input()
set indeterminate(bool b) {
_indeterminate = b;
if (indeterminate) {
_tryFancyAnimation();
} else {
_primaryAnimation?.cancel();
_secondaryAnimation?.cancel();
}
}