MacosColor.fromARGB constructor

const MacosColor.fromARGB(
  1. int a,
  2. int r,
  3. int g,
  4. int b,
)

Construct a color from the lower 8 bits of four integers.

  • a is the alpha value, with 0 being transparent and 255 being fully opaque.
  • r is red, from 0 to 255.
  • g is green, from 0 to 255.
  • b is blue, from 0 to 255.

Out of range values are brought into range using modulo 255.

See also fromRGBO, which takes the alpha value as a floating point value.

Implementation

const MacosColor.fromARGB(super.a, super.r, super.g, super.b)
    : super.fromARGB();