tristate property
If true, value can be true, false, or null, otherwise value must be true or false.
When tristate is true and value is null, then the control is considered to be in its third or "indeterminate" state.
Implementation
bool get tristate => _tristate;
Implementation
set tristate(bool value) {
assert(tristate != null);
if (value == _tristate)
return;
_tristate = value;
markNeedsSemanticsUpdate();
}