sysIntegrity static method
Initiates a request to check the system integrity of the current device.
Implementation
static Future<String> sysIntegrity(
Uint8List nonce,
String appId, {
String? alg,
}) async {
return await _methodChannel.invokeMethod(
'sysIntegrity',
<String, dynamic>{
'nonce': nonce,
'appId': appId,
'alg': alg,
},
);
}