project<R extends Point<num>> abstract method

  1. @override
PointSeries<R> project<R extends Point<num>>(
  1. Projection projection, {
  2. bool lazy = false,
  3. required CreatePosition<R> to,
})
override

Returns a new series with all points projected using projection.

The projected series is populated by default. If lazy is set true then returns a new lazy series with points of the series projected lazily.

Target points of R are created using to as a point factory.

Implementation

@override
PointSeries<R> project<R extends Point>(
  Projection projection, {
  bool lazy = false,
  required CreatePosition<R> to,
});