checkDeviceSecurity static method

Future<SecurityCheckResult> checkDeviceSecurity({
  1. bool checkDebugging = true,
  2. bool checkEmulator = true,
  3. String? bundleId,
  4. String? expectedHash,
  5. List<String>? flutterSecrets,
  6. String? apkPath,
  7. String? ipaPath,
})

Implementation

static Future<SecurityCheckResult> checkDeviceSecurity({
  bool checkDebugging = true,
  bool checkEmulator = true,
  String? bundleId,
  String? expectedHash,
  List<String>? flutterSecrets,
  String? apkPath,
  String? ipaPath,
}) async {
  return SecurityCheckResult(
    isSecure: true,
    reason: 'Device security checks are not applicable on this platform.',
  );
}