HttpAuthenticationChallenge constructor

HttpAuthenticationChallenge({
  1. required int previousFailureCount,
  2. required URLProtectionSpace protectionSpace,
  3. IOSURLResponse? iosFailureResponse,
  4. URLCredential? proposedCredential,
  5. String? iosError,
})

Implementation

HttpAuthenticationChallenge({
  required this.previousFailureCount,
  required URLProtectionSpace protectionSpace,
  this.iosFailureResponse,
  this.proposedCredential,
  this.iosError,
}) : super(protectionSpace: protectionSpace);