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