ScaleSequentialLog<Y> constructor

ScaleSequentialLog<Y>({
  1. List<num>? domain = const [1, 10],
  2. required Y interpolator(
    1. num
    ),
})

Returns a new sequential scale with a logarithmic transform, analogous to ScaleLog.

Implementation

ScaleSequentialLog(
    {super.domain = const [1, 10], required super.interpolator}) {
  initLoggish();
}