unFocus method

void unFocus()

Implementation

void unFocus() {
  if (FocusScope.of(context).hasFocus) {
    FocusScope.of(context).unfocus();
  }
}