isReady static method

Future<bool> isReady()

Implementation

static Future<bool> isReady() async {
  final bool ready = await _channel.invokeMethod(Method.IS_READY);
  return ready;
}