AuthResult constructor

AuthResult({
  1. Allowed? allowed,
  2. AuthDecision? authDecision,
  3. AuthInfo? authInfo,
  4. Denied? denied,
  5. List<String>? missingContextValues,
})

Implementation

AuthResult({
  this.allowed,
  this.authDecision,
  this.authInfo,
  this.denied,
  this.missingContextValues,
});