CredentialLookupEvent constructor

CredentialLookupEvent({
  1. required String method,
  2. required String realmUri,
  3. required String authId,
  4. required bool hit,
  5. String? reason,
  6. String? message,
  7. List? arguments,
  8. Map<String, Object?>? argumentsKeywords,
})

Implementation

CredentialLookupEvent({
  required this.method,
  required this.realmUri,
  required this.authId,
  required this.hit,
  this.reason,
  this.message,
  this.arguments,
  this.argumentsKeywords,
});