isHidden method
Check if the Web View of the InAppBrowser
instance is hidden.
Implementation
Future<bool> isHidden() async {
this.throwIfNotOpened();
Map<String, dynamic> args = <String, dynamic>{};
return await _channel.invokeMethod('isHidden', args);
}