isJailbroken method

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

Implementation

@override
Future<bool> isJailbroken() async {
  // Web doesn't have jailbreak concept, but we can check for security bypasses
  return await _isSecurityBypassed();
}