copy method

DivergingLogScale<R> copy()

Implementation

DivergingLogScale<R> copy() {
  return DivergingLogScale<R>(
    domain: List.from(_domain),
    interpolator: _interpolator,
    clamp: _clamp,
    base: _base,
  );
}