OAuth2Strategy<User> constructor

OAuth2Strategy<User>(
  1. ExternalAuthOptions options,
  2. Uri authorizationEndpoint,
  3. Uri tokenEndpoint,
  4. FutureOr<User> verifier(
    1. Client,
    2. RequestContext,
    3. ResponseContext
    ),
  5. FutureOr onError(
    1. AuthorizationException,
    2. RequestContext,
    3. ResponseContext
    ), {
  6. Map<String, dynamic> getParameters(
    1. MediaType?,
    2. String
    )?,
  7. String delimiter = ' ',
})

Implementation

OAuth2Strategy(this.options, this.authorizationEndpoint, this.tokenEndpoint,
    this.verifier, this.onError,
    {this.getParameters, this.delimiter = ' '});