PointSeries<E extends Point<num>>.view constructor

PointSeries<E extends Point<num>>.view(
  1. Iterable<E> source, {
  2. Bounds<Point<num>>? bounds,
})

Create a PointSeries instance backed by source.

An optional bounds can be provided or it's lazy calculated if null.

Implementation

factory PointSeries.view(Iterable<E> source, {Bounds? bounds}) =
    _PointSeriesView<E>;