isRooted static method

Future<bool?> isRooted()

Implementation

static Future<bool?> isRooted() async {
  bool? result = await _channel.invokeMethod("isRooted");
  return result;
}