Construct a color from the lower 32 bits of an int.
Bits 24-31 are the alpha value. Bits 16-23 are the red value. Bits 8-15 are the green value. Bits 0-7 are the blue value.
Source
const Color(int value) : value = value & 0xFFFFFFFF;
Construct a color from the lower 32 bits of an int.
Bits 24-31 are the alpha value. Bits 16-23 are the red value. Bits 8-15 are the green value. Bits 0-7 are the blue value.
const Color(int value) : value = value & 0xFFFFFFFF;