List<String> scopes

The list of scopes this instance requires.

A bearer token must have access to all of the scopes in this list in order to pass through to the nextController.

Source

List<String> get scopes => _scopes?.map((s) => s.scopeString)?.toList();
void scopes=(List<String> scopes)

Source

set scopes(List<String> scopes) {
  _scopes = scopes?.map((s) => new AuthScope(s))?.toList();
}