isDeviceRooted method

  1. @override
Future<bool?> isDeviceRooted()
override

Implementation

@override
Future<bool?> isDeviceRooted() async {
  final isEmulator = await methodChannel.invokeMethod<bool>('isDeviceRooted');
  return isEmulator;
}