alpha property
The alpha channel of this color in an 8 bit value.
A value of 0 means this color is fully transparent. A value of 255 means this color is fully opaque.
Implementation
@Deprecated('Use (*.a * 255.0).round() & 0xff')
int get alpha => (a * 255.0).round() & 0xff;