SIPChallengeRequest constructor

SIPChallengeRequest({
  1. String? a1,
  2. String? algorithm,
  3. String? charset,
  4. String? cnonce,
  5. List<String> domain = const [],
  6. String? method,
  7. String? nc,
  8. String? nonce,
  9. String? opaque,
  10. List<String> qop = const [],
  11. String? realm,
  12. String? response,
  13. bool? stale,
  14. String? uri,
  15. bool? userhash,
  16. String? username,
})

Returns a new SIPChallengeRequest instance.

Implementation

SIPChallengeRequest({
  this.a1,
  this.algorithm,
  this.charset,
  this.cnonce,
  this.domain = const [],
  this.method,
  this.nc,
  this.nonce,
  this.opaque,
  this.qop = const [],
  this.realm,
  this.response,
  this.stale,
  this.uri,
  this.userhash,
  this.username,
});