ScaleSequentialSymlog<Y> constructor

ScaleSequentialSymlog<Y>({
  1. List<num>? domain,
  2. required Y interpolator(
    1. num
    ),
})

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

Implementation

ScaleSequentialSymlog({super.domain, required super.interpolator}) {
  initSymlogish();
}