hide static method

void hide()

Implementation

static void hide() {
  if (currentLoader != null) {
    currentLoader?.remove();
    isShowing = false;
    currentLoader = null;
  }
}