hideOverlay method

Future<void> hideOverlay()

Hides the currently displayed overlay.

Dismisses the overlay with a slide-down animation.

Implementations should override this method to hide the overlay on the platform.

Implementation

Future<void> hideOverlay() {
  throw UnimplementedError('hideOverlay() has not been implemented.');
}