copy method

  1. @override
ScaleSequentialQuantile<Y> copy()
override

Returns an exact copy of this scale.

Changes to this scale will not affect the returned scale, and vice versa.

Implementation

@override
ScaleSequentialQuantile<Y> copy() {
  return ScaleSequentialQuantile(domain: _domain, interpolator: interpolator);
}