detectRootManagementApps property

Future<bool?> detectRootManagementApps

Implementation

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