indeterminate property
bool
get
indeterminate
Implementation
bool get indeterminate => _indeterminate;
Alternative state of the checkbox, not user set-able state. Between checked and indeterminate, only one can be true, though both can be false.
true
is INDETERMINATE and false
is not.
Implementation
@Input()
set indeterminate(bool newValue) {
if (_indeterminate == newValue) return;
_setStates(indeterminate: newValue);
}