safetyNetAttestationJwt method Null safety

Future<String> safetyNetAttestationJwt(
  1. String nonce
)

Request the Safety Net Attestation with a String nonce The response is formatted as a JSON Web Signature (JWS)

Implementation

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