Colour constructor

const Colour({
  1. int alpha = 255,
  2. int red = 255,
  3. int green = 255,
  4. int blue = 255,
})

Implementation

const Colour({
  this.alpha = 255,
  this.red = 255,
  this.green = 255,
  this.blue = 255,
});