linear method

LinearInterpolator linear(
  1. double scale
)

Implementation

LinearInterpolator linear(double scale) {
  return LinearInterpolator(
    input: this,
    scale: scale,
  );
}