isOpened static method

Future<bool> isOpened()

isOpened

Available Platforms

Web, Android, iOS

Implementation

static Future<bool> isOpened() async {
  if (!kIsWeb && !io.Platform.isAndroid && !io.Platform.isIOS) {
    debugPrint(
      'isOpened is not available for current operating system',
    );
    return false;
  }

  return await _channel.invokeMethod('isOpened');
}