red property

  1. @Deprecated('Use (*.r * 255.0).round() & 0xff')
int get red

The red channel of this color in an 8 bit value.

Implementation

@Deprecated('Use (*.r * 255.0).round() & 0xff')
int get red => (r * 255.0).round() & 0xff;