close method
Closes the InAppBrowser
window.
Implementation
Future<void> close() async {
this.throwIfNotOpened();
Map<String, dynamic> args = <String, dynamic>{};
await _channel.invokeMethod('close', args);
}
Closes the InAppBrowser
window.
Future<void> close() async {
this.throwIfNotOpened();
Map<String, dynamic> args = <String, dynamic>{};
await _channel.invokeMethod('close', args);
}