useFocusScopeNode function
Creates a FocusScopeNode.
The node is automatically disposed when the widget is unmounted.
Implementation
FocusScopeNode useFocusScopeNode({String? debugLabel}) {
final n = FocusScopeNode(debugLabel: debugLabel);
onBeforeUnmount(n.dispose);
return n;
}