blendPercent method

Color blendPercent(
  1. Color other,
  2. int percentOther
)

Implementation

Color blendPercent(Color other, int percentOther) =>
    blend(other, percentOther / 100);