mix method

Color? mix(
  1. Color another,
  2. double amount
)

Implementation

Color? mix(Color another, double amount) => Color.lerp(this, another, amount);