close method

  1. @override
Future<void> close()

Closes the PlatformInAppBrowser window.

Officially Supported Platforms/Implementations:

  • Android native WebView
  • iOS
  • MacOS
  • Windows

Implementation

@override
Future<void> close() async {
  assert(_isOpened, 'The browser is not opened.');

  Map<String, dynamic> args = <String, dynamic>{};
  await channel?.invokeMethod('close', args);
}