hideKeyboard method
void
hideKeyboard()
Hide the soft keyboard off the screen.
Implementation
void hideKeyboard() {
if (!this.hasPrimaryFocus) {
this.requestFocus(_dummyFocusNode);
}
}
Hide the soft keyboard off the screen.
void hideKeyboard() {
if (!this.hasPrimaryFocus) {
this.requestFocus(_dummyFocusNode);
}
}