getScopes static method

List<Scope> getScopes()

Implementation

static List<Scope> getScopes() {

  List<Scope> outScopes = List<Scope>.empty(growable: true);
  _values.forEach((element) {
    if (element != Scope.Invalid) {
      outScopes.add(element);
    }
  });
  return outScopes;
}