isDeviceRooted method

Future<bool> isDeviceRooted()

Implementation

Future<bool> isDeviceRooted() async {
  final result = await _channel.invokeMethod<bool>('root#isDeviceRooted');
  return result ?? false;
}