close method

Future<void> close()

Closes the InAppBrowser window.

Implementation

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