indeterminate property

bool get indeterminate

Implementation

bool get indeterminate => _indeterminate;
  1. @Input()
set indeterminate (bool b)

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();
  }
}