colorAlphaBlend function

Color colorAlphaBlend(
  1. Color dst,
  2. Color src,
  3. Color tint
)

Returns src alpha-blended into dst color with tint.

Implementation

Color colorAlphaBlend(Color dst, Color src, Color tint) {
  return Color.fromRef(library.ColorAlphaBlend(dst.ref, src.ref, tint.ref));
}