withOAuth method

AuthParamsBuilder withOAuth(
  1. OAuth? oAuth
)

Specifies the OAuth to be used for auth.

Implementation

AuthParamsBuilder withOAuth(OAuth? oAuth) {
  _oAuth = oAuth;
  return this;
}