sysIntegrity static method

Future<String> sysIntegrity(
  1. Uint8List nonce,
  2. String appId, {
  3. String? alg,
})

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,
    },
  );
}