LogScale constructor
Creates a log scale with the given parameters.
Implementation
LogScale({
List<double>? domain,
List<double>? range,
bool clamp = false,
double base = 10,
}) : _domain = domain ?? [1, 10],
_range = range ?? [0, 1],
_clamp = clamp,
_base = base;