selected property
If non-null, sets the SemanticsNode.isSelected
semantic to the given
value.
Implementation
bool get selected => _selected;
Implementation
set selected(bool value) {
if (selected == value)
return;
_selected = value;
markNeedsSemanticsUpdate();
}