rgbValue property
Gets the rgbValue of the color
Implementation
@override
// Gets the rgbValue of the color
int get rgbValue =>
((_formatColorRgb.a * 255).toInt() << 24) |
((_formatColorRgb.r * 255).toInt() << 16) |
((_formatColorRgb.g * 255).toInt() << 8) |
(_formatColorRgb.b * 255).toInt();