AuthWebAuthnCeremonyFixture constructor

AuthWebAuthnCeremonyFixture({
  1. required String relyingPartyId,
  2. required Uri origin,
  3. String credentialName = 'Runtime platform passkey',
})

Creates a deterministic platform-passkey fixture for one relying party.

Implementation

AuthWebAuthnCeremonyFixture({
  required this.relyingPartyId,
  required Uri origin,
  this.credentialName = 'Runtime platform passkey',
}) : origin = origin.origin,
     _keyPair = _Es256KeyPair.create();