RGBA constructor

RGBA({
  1. int red = 0,
  2. int green = 0,
  3. int blue = 0,
  4. int alpha = 0,
})

Implementation

RGBA({this.red = 0, this.green = 0, this.blue = 0, this.alpha = 0});