hide method

void hide()

Simulates the user hiding the onscreen keyboard.

This does nothing but set the internal flag.

Implementation

void hide() {
  assert(isRegistered);
  _isVisible = false;
}