closedOutersRead property
Implementation
List<Waypath> get closedOutersRead {
List<Waypath> result = _closedOuters;
assert(() {
// in debug mode return an unmodifiable list to find violations
result = List.unmodifiable(result);
return true;
}());
return result;
}