QuantileScale<R> constructor
Creates a quantile scale with the given parameters.
Implementation
QuantileScale({
List<double>? domain,
required List<R> range,
}) {
_range = List.from(range);
if (domain != null) {
this.domain = domain;
}
}