isRootedWithBusyBoxCheck property

Future<bool?> isRootedWithBusyBoxCheck

Check if rooted with busybox or not

Implementation

static Future<bool?> get isRootedWithBusyBoxCheck async {
  try {
    final bool? result =
        await _channel.invokeMethod('isRootedWithBusyBoxCheck');
    return result;
  } catch (error) {
    return null;
  }
}