show method
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
- Windows
Implementation
@override
Future<void> show() async {
assert(_isOpened, 'The browser is not opened.');
Map<String, dynamic> args = <String, dynamic>{};
await channel?.invokeMethod('show', args);
}