isVisible property

bool isVisible

Whether the onscreen keyboard is visible to the user.

Specifically, this reflects the last call to TextInput.show or TextInput.hide received by the stub implementation.

Implementation

bool get isVisible {
  assert(isRegistered);
  return _isVisible;
}