copy method

  1. @override
ScaleDivergingSymlog<Y> copy()
override

Returns an exact copy of this scale.

Changes to this scale will not affect the returned scale, and vice versa.

Implementation

@override
ScaleDivergingSymlog<Y> copy() => assign(
    ScaleDivergingSymlog<Y>(domain: domain, interpolator: interpolator), this)
  ..constant = constant;