Authorization constructor

Authorization({
  1. List<Challenge>? challenges,
  2. DateTime? expires,
  3. Identifiers? identifier,
  4. String? status,
  5. String? digest,
})

Implementation

Authorization({
  this.challenges,
  this.expires,
  this.identifier,
  this.status,
  this.digest,
});