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