unfocus method
void
unfocus()
Implementation
void unfocus() {
if (widget.focusNode != null) {
widget.focusNode!.unfocus();
} else {
FocusScope.of(context).unfocus();
}
}
void unfocus() {
if (widget.focusNode != null) {
widget.focusNode!.unfocus();
} else {
FocusScope.of(context).unfocus();
}
}