copy method

  1. @override
LogScale copy()
override

Creates a copy of this scale.

Implementation

@override
LogScale copy() {
  return LogScale(
    domain: List.from(_domain),
    range: List.from(_range),
    clamp: _clamp,
    base: _base,
  );
}