addScope method

GoogleAuthProvider addScope(
  1. String scope
)

Adds Google OAuth scope.

Implementation

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