Authenticate constructor

Authenticate({
  1. String? provider,
  2. String? state,
  3. String? oauth_token,
  4. String? oauth_verifier,
  5. String? userName,
  6. String? password,
  7. bool? rememberMe,
  8. String? Continue,
  9. String? nonce,
  10. String? uri,
  11. String? response,
  12. String? qop,
  13. String? nc,
  14. String? cnonce,
  15. bool? useTokenCookie,
  16. String? accessToken,
  17. String? accessTokenSecret,
  18. Map<String, String?>? meta,
})

Implementation

Authenticate(
    {this.provider,
    this.state,
    this.oauth_token,
    this.oauth_verifier,
    this.userName,
    this.password,
    this.rememberMe,
    this.Continue,
    this.nonce,
    this.uri,
    this.response,
    this.qop,
    this.nc,
    this.cnonce,
    this.useTokenCookie,
    this.accessToken,
    this.accessTokenSecret,
    this.meta});