toRgbaInt method
Returns the color as a 32-bit RGBA integer (alpha last).
Implementation
int toRgbaInt() =>
((_value & _rgbMask) << 8) | ((_value & _alphaMask) >> _alphaShift);
Returns the color as a 32-bit RGBA integer (alpha last).
int toRgbaInt() =>
((_value & _rgbMask) << 8) | ((_value & _alphaMask) >> _alphaShift);