Color.rgb constructor

const Color.rgb(
  1. int red,
  2. int green,
  3. int blue
)

Constructs a Color from red, green and blue values

Implementation

const factory Color.rgb(int red, int green, int blue) = _RGBColor;