intValue property
Returns the integer value of the color.
Implementation
int get intValue {
// TODO(UX-1353): Remove this method as int color values should be removed
return _intAlpha << 24 | _intRed << 16 | _intGreen << 8 | _intBlue;
}
Returns the integer value of the color.
int get intValue {
// TODO(UX-1353): Remove this method as int color values should be removed
return _intAlpha << 24 | _intRed << 16 | _intGreen << 8 | _intBlue;
}