addChild method
Adds a child focus node to this branch.
Implementation
void addChild(FocusNode child) {
child.parent = this;
children.add(child);
}
Adds a child focus node to this branch.
void addChild(FocusNode child) {
child.parent = this;
children.add(child);
}