button property

bool button

If non-null, sets the SemanticsNode.isButton semantic to the given value.

Implementation

bool get button => _button;
void button= (bool value)

Implementation

set button(bool value) {
  if (button == value)
    return;
  _button = value;
  markNeedsSemanticsUpdate();
}