hide method

Future<void> hide()

Hides the PlatformInAppBrowser window. Calling this has no effect if the PlatformInAppBrowser was already hidden.

Officially Supported Platforms/Implementations:

  • Android native WebView
  • iOS
  • MacOS

Implementation

Future<void> hide() {
  throw UnimplementedError('hide is not implemented on the current platform');
}