copy method

DivergingPowScale<R> copy()

Implementation

DivergingPowScale<R> copy() {
  return DivergingPowScale<R>(
    domain: List.from(_domain),
    interpolator: _interpolator,
    clamp: _clamp,
    exponent: _exponent,
  );
}