copy method

SequentialLogScale<R> copy()

Implementation

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