unfocus method
void
unfocus()
Removes focus from this node and its descendants.
Implementation
void unfocus() {
if (!isFocused) return;
_unfocusRecursive();
}
Removes focus from this node and its descendants.
void unfocus() {
if (!isFocused) return;
_unfocusRecursive();
}