MissingAuthenticatorInServer constructor
Default constructor for MissingAuthenticatorInServer.
Params:
- keyId: the key ID of the FIDO UAF credentials associated with the missing authenticator.
- account: the account associated with the missing authenticator.
- aaid: the AAID of the missing authenticator.
Implementation
factory MissingAuthenticatorInServer({
required String keyId,
required Account account,
required String aaid,
}) {
return MissingAuthenticatorInServerImpl(
keyId: keyId,
account: account,
aaid: aaid,
);
}