MissingAuthenticatorInServer constructor

MissingAuthenticatorInServer(
  1. {required String keyId,
  2. required Account account,
  3. required String aaid}
)

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,
  );
}