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