Color.rgba constructor

const Color.rgba(
  1. int red,
  2. int green,
  3. int blue,
  4. double alpha,
)

Constructs a Color from red, green, blue and alpha values

Implementation

const factory Color.rgba(int red, int green, int blue, double alpha) = _RGBAColor;