AuthenticationInitResponse constructor

AuthenticationInitResponse({
  1. required String rpId,
  2. required String challenge,
  3. int? timeout,
  4. String? userVerification,
  5. List<AllowCredential>? allowCredentials,
})

Constructor

Implementation

AuthenticationInitResponse({
  required this.rpId,
  required this.challenge,
  this.timeout,
  this.userVerification,
  this.allowCredentials,
});