ensureVisible method

void ensureVisible()

Re-show the platform soft keyboard when already attached (e.g. tap after hide without detach).

Implementation

void ensureVisible() {
  if (!isAttached) {
    attach();
    return;
  }
  _conn!.show();
}