paths property

  1. @override
List<String> get paths
override

Implementation

@override
List<String> get paths {
  if (_cachedCount != count) {
    _cachedCount = count;
    _cachedPaths = .generate(count, (i) => (ref.paths + i).value.toD);
  }
  return _cachedPaths;
}