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