safetyNetAttestationWithFormattedNonceJwt method Null safety

Future<String> safetyNetAttestationWithFormattedNonceJwt(
  1. Uint8List nonce
)

Request the Safety Net Attestation with a list of bytes The response is formatted as a JSON Web Signature (JWS)

Implementation

static Future<String> safetyNetAttestationWithFormattedNonceJwt(
    Uint8List nonce) async {
  final String result = await _channel.invokeMethod(
      'requestSafetyNetAttestation',
      {"nonce_bytes": nonce, "include_payload": false});
  return result;
}