InterpolateConfig constructor
InterpolateConfig(
- List<
double> inputRange, - List<
double> outputRange, { - Extrapolate extrapolate = Extrapolate.EXTEND,
- Extrapolate? extrapolateLeft,
- Extrapolate? extrapolateRight,
Implementation
InterpolateConfig(this.inputRange, this.outputRange,
{this.extrapolate = Extrapolate.EXTEND,
this.extrapolateLeft,
this.extrapolateRight});