Linearly interpolates between this color and other by factor t (0..1).
other
t
Colors.red.mix(Colors.blue, 0.5) // purple-ish
Color mix(Color other, double t) => Color.lerp(this, other, t)!;