show method

Future<void> show()

Displays an InAppBrowser window that was opened hidden. Calling this has no effect if the InAppBrowser was already visible.

Implementation

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