unfocus method
Cancels any outstanding requests for focus.
This method is safe to call regardless of whether this node has ever requested focus.
Implementation
void unfocus() {
_parent?._resignFocus(this);
assert(_parent == null);
assert(_manager == null);
}