AuthenticationChallenge constructor

AuthenticationChallenge(
  1. String scheme,
  2. Map<String, String> parameters
)

Creates a new challenge value with scheme and parameters.

Implementation

AuthenticationChallenge(this.scheme, Map<String, String> parameters)
    : parameters = UnmodifiableMapView(CaseInsensitiveMap.from(parameters));