hideOverlay method

  1. @override
Future<void> hideOverlay()
override

Hides the currently displayed overlay.

Calls the native 'hideOverlay' method to dismiss any visible overlay UI.

Implementation

@override
Future<void> hideOverlay() async {
  await methodChannel.invokeMethod('hideOverlay');
}