rgbValue property
int
get
rgbValue
Gets the rgbValue of the color
Implementation
int get rgbValue {
return ((formatColorRgb.a * 255).toInt() << 24) |
((formatColorRgb.r * 255).toInt() << 16) |
((formatColorRgb.g * 255).toInt() << 8) |
(formatColorRgb.b * 255).toInt();
}