controlsNodes property

Set<String>? get controlsNodes

The SemanticsNode.identifiers of widgets controlled by this node.

Implementation

Set<String>? get controlsNodes => _controlsNodes;
set controlsNodes (Set<String>? value)

Implementation

set controlsNodes(Set<String>? value) {
  assert(value != null);
  _controlsNodes = value;
  _hasBeenAnnotated = true;
}