dynamic static method

ScaleSequential<Object?> dynamic({
  1. List<num>? domain = const [1, 10],
  2. Interpolator<num> interpolator = identity,
})
override

Implementation

static ScaleSequential<Object?> dynamic(
    {List<num>? domain = const [1, 10],
    Interpolator<num> interpolator = identity}) {
  return ScaleSequential(domain: domain, interpolator: interpolator);
}