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