MissingAuthenticatorInMobileDevice constructor

MissingAuthenticatorInMobileDevice(
  1. {required String keyId,
  2. required String aaid,
  3. required Server server}
)

Default constructor for MissingAuthenticatorInMobileDevice.

Params:

  • keyId: the key ID of the FIDO UAF credentials associated with the missing authenticator.
  • aaid: the AAID of the missing authenticator.
  • server: the server where the mismatch occurs.

Implementation

factory MissingAuthenticatorInMobileDevice({
  required String keyId,
  required String aaid,
  required Server server,
}) {
  return MissingAuthenticatorInMobileDeviceImpl(
    keyId: keyId,
    aaid: aaid,
    server: server,
  );
}