static Scope findById(String id) { Scope found = Invalid; for (var scope in _values) { if (scope._id == id) { return scope; } } return found; }