isDeviceRooted method

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

Implementation

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