checkForMagiskBinary property

Future<bool?> checkForMagiskBinary

Implementation

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