Auth constructor

Auth({
  1. List<String>? accessLevels,
  2. List<String>? audiences,
  3. Map<String, Object?>? claims,
  4. String? presenter,
  5. String? principal,
})

Implementation

Auth({
  this.accessLevels,
  this.audiences,
  this.claims,
  this.presenter,
  this.principal,
});