copy method
Creates a copy of this scale.
Implementation
@override
SymlogScale copy() {
return SymlogScale(
domain: List.from(_domain),
range: List.from(_range),
clamp: _clamp,
constant: _constant,
);
}
Creates a copy of this scale.
@override
SymlogScale copy() {
return SymlogScale(
domain: List.from(_domain),
range: List.from(_range),
clamp: _clamp,
constant: _constant,
);
}