hide method

Future<void> hide()

Hides the InAppBrowser window. Calling this has no effect if the InAppBrowser was already hidden.

Implementation

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