unfocus method
void
unfocus()
Removes focus from this node.
Implementation
void unfocus() {
if (_hasFocus) {
_hasFocus = false;
notifyListeners();
}
}
Removes focus from this node.
void unfocus() {
if (_hasFocus) {
_hasFocus = false;
notifyListeners();
}
}