copy method
Creates a copy of this scale.
Implementation
QuantileScale<R> copy() {
return QuantileScale<R>(
domain: List.from(_domain),
range: List.from(_range),
);
}
Creates a copy of this scale.
QuantileScale<R> copy() {
return QuantileScale<R>(
domain: List.from(_domain),
range: List.from(_range),
);
}