createFocusNode method
Implementation
FocusNode createFocusNode({String? debugLabel, bool watch = false}) {
var node = FocusNode(debugLabel: debugLabel);
disposers.add(node.dispose);
if (watch) {
node.addListener(() {
safeState(() {});
});
}
return node;
}