CreatePasskeyResponseData constructor

CreatePasskeyResponseData({
  1. required String rawId,
  2. String? authenticatorAttachment,
  3. required String type,
  4. required String id,
  5. required CreatePasskeyResponse response,
  6. required CreatePasskeyExtension clientExtensionResults,
  7. String username = 'username',
})

Implementation

CreatePasskeyResponseData({
  required this.rawId,
  this.authenticatorAttachment,
  required this.type,
  required this.id,
  required this.response,
  required this.clientExtensionResults,
  this.username = 'username',
});