CredentialRejection constructor

CredentialRejection({
  1. required String reason,
  2. String? message,
  3. List? arguments,
  4. Map<String, Object?>? argumentsKeywords,
})

Implementation

CredentialRejection({
  required this.reason,
  this.message,
  this.arguments,
  this.argumentsKeywords,
});