red property
- @Deprecated('Use (*.r * 255.0).round().clamp(0, 255)')
The red channel of this color in an 8 bit value.
Implementation
@Deprecated('Use (*.r * 255.0).round().clamp(0, 255)')
int get red => (0x00ff0000 & value) >> 16;
The red channel of this color in an 8 bit value.
@Deprecated('Use (*.r * 255.0).round().clamp(0, 255)')
int get red => (0x00ff0000 & value) >> 16;