checkDeviceSecurity static method
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.',
);
}