addScope method

AppleAuthProvider addScope(
  1. String scope
)

Adds Apple OAuth scope.

Implementation

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