addScope method

GithubAuthProvider addScope(
  1. String scope
)

Adds GitHub OAuth scope.

Implementation

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