lines property

List<CubicLine> lines

Lazy list of all Lines.

Implementation

List<CubicLine> get lines {
  final list = <CubicLine>[];

  _paths.forEach((data) => list.addAll(data._lines));

  return list;
}