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