show method

Future<void> show()

Displays a PlatformInAppBrowser window that was opened hidden. Calling this has no effect if the PlatformInAppBrowser was already visible.

Officially Supported Platforms/Implementations:

  • Android native WebView
  • iOS
  • MacOS

Implementation

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