lerp method

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

Implementation

Color lerp(Color a, double t) {
  return Color.lerp(this, a, t)!;
}