lerp method

double lerp(
  1. num start,
  2. num end,
  3. double percent
)
inherited

Implementation

double lerp(num start, num end, double percent) {
  return lerpDouble(start, end, percent)!;
}