DigestChallenge constructor

DigestChallenge({
  1. required String realm,
  2. required String nonce,
  3. String? qop,
  4. String algorithm = 'MD5',
  5. String? opaque,
  6. bool stale = false,
})

Implementation

DigestChallenge({
  required this.realm,
  required this.nonce,
  this.qop,
  this.algorithm = 'MD5',
  this.opaque,
  this.stale = false,
});