lerp method

Color lerp(
  1. Color a,
  2. Color b,
  3. double t
)

Implementation

Color lerp(Color a, Color b, double t) => a.lerp(b, t);