AppleAttestationResult constructor

AppleAttestationResult({
  1. required String keyId,
  2. required String bundleId,
  3. required String attestation,
})

Creates an AppleAttestationResult with the specified values.

keyId The unique identifier for the attestation key. bundleId The bundle identifier of the iOS application. attestation The attestation data as a Base64-encoded string.

Implementation

AppleAttestationResult({
  required this.keyId,
  required this.bundleId,
  required this.attestation,
});