VirtualAuthenticatorOptions constructor

VirtualAuthenticatorOptions({
  1. required AuthenticatorProtocol protocol,
  2. Ctap2Version? ctap2Version,
  3. required AuthenticatorTransport transport,
  4. bool? hasResidentKey,
  5. bool? hasUserVerification,
  6. bool? hasLargeBlob,
  7. bool? hasCredBlob,
  8. bool? hasMinPinLength,
  9. bool? hasPrf,
  10. bool? automaticPresenceSimulation,
  11. bool? isUserVerified,
})

Implementation

VirtualAuthenticatorOptions(
    {required this.protocol,
    this.ctap2Version,
    required this.transport,
    this.hasResidentKey,
    this.hasUserVerification,
    this.hasLargeBlob,
    this.hasCredBlob,
    this.hasMinPinLength,
    this.hasPrf,
    this.automaticPresenceSimulation,
    this.isUserVerified});