exists property

Future<bool> get exists

Implementation

static Future<bool> get exists async {
  if (!isSupportedPlatform) return false;

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