setScopes method

OAuthProvider setScopes(
  1. List<String> scopes
)

Returns the parameters for this provider instance.

Implementation

OAuthProvider setScopes(List<String> scopes) {
  _scopes = scopes;
  return this;
}