addScope method

OAuthProvider addScope(
  1. String scope
)

Adds OAuth scope. This is a Web only API.

Implementation

OAuthProvider addScope(String scope) {
  _scopes.add(scope);
  return this;
}