video_player
dart:ui
Color
property red
red
class Color
Constructors
Color
fromARGB
fromRGBO
Properties
alpha
blue
green
hashCode
opacity
red
value
runtimeType
Methods
computeLuminance
toString
withAlpha
withBlue
withGreen
withOpacity
withRed
noSuchMethod
Operators
operator ==
Static methods
lerp
int
red
The red channel of this color in an 8 bit value.
Source
int get red => (0x00ff0000 & value) >> 16;
property red