controlsNodes property
The SemanticsNode.identifiers of widgets controlled by this node.
Implementation
Set<String>? get controlsNodes => _controlsNodes;
Implementation
set controlsNodes(Set<String>? value) {
assert(value != null);
_controlsNodes = value;
_hasBeenAnnotated = true;
}