unfocus method

void unfocus()

Removes focus from this node.

Implementation

void unfocus() {
  if (_hasFocus) {
    _hasFocus = false;
    notifyListeners();
  }
}