fromRgb method Null safety
Create a color value from RGB values in the range 0, 255
.
The channel order of a uint32 encoded color is BGRA.
Implementation
static int fromRgb(int red, int green, int blue) =>
getColor(red, green, blue);
Create a color value from RGB values in the range 0, 255
.
The channel order of a uint32 encoded color is BGRA.
static int fromRgb(int red, int green, int blue) =>
getColor(red, green, blue);