addScope method

OAuthProvider addScope(
  1. String scope
)

Adds OAuth scope.

Implementation

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