addScope method

YahooAuthProvider addScope(
  1. String scope
)

Adds Yahoo OAuth scope.

Implementation

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