dynamic static method

ScaleSymlog<Object?> dynamic({
  1. List<num> domain = const [0, 1],
  2. List<Object?> range = const <num>[0, 1],
  3. Interpolate<Object?> interpolate = interpolate,
})

Implementation

static ScaleSymlog<Object?> dynamic(
    {List<num> domain = const [0, 1],
    List<Object?> range = const <num>[0, 1],
    Interpolate<Object?> interpolate = interpolate}) {
  return ScaleSymlog(domain: domain, range: range, interpolate: interpolate);
}