checked property
If non-null, sets the SemanticsNode.hasCheckedState
semantic to true and
the SemanticsNode.isChecked
semantic to the given value.
Implementation
bool get checked => _checked;
Implementation
set checked(bool value) {
if (checked == value)
return;
_checked = value;
markNeedsSemanticsUpdate();
}