transform abstract method

PointSeries<E> transform(
  1. TransformPosition transform, {
  2. bool lazy = false,
})
inherited

Returns a new series with all points transformed using transform.

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

Implementation

S transform(TransformPosition transform, {bool lazy = false});