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();
Source
set scopes(List<String> scopes) { _scopes = scopes?.map((s) => new AuthScope(s))?.toList(); }