AuthenticateResponseType constructor

const AuthenticateResponseType({
  1. required String id,
  2. required String rawId,
  3. required String clientDataJSON,
  4. required String authenticatorData,
  5. required String signature,
  6. required String userHandle,
  7. Map<String?, Object?>? clientExtensionResults,
})

Constructs a new instance.

Implementation

const AuthenticateResponseType({
  required this.id,
  required this.rawId,
  required this.clientDataJSON,
  required this.authenticatorData,
  required this.signature,
  required this.userHandle,
  this.clientExtensionResults,
});