isReady property

Future<bool> get isReady

Implementation

static Future<bool> get isReady async {
  if (!_isSupported) return false;

  return await _channel.invokeMethod<bool>('isReady') ?? false;
}