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