HSVColour constructor

const HSVColour({
  1. double alpha = 1.0,
  2. double hue = 360,
  3. double saturation = 1.0,
  4. double value = 1,
})

Implementation

const HSVColour({
  this.alpha = 1.0,
  this.hue = 360,
  this.saturation = 1.0,
  this.value = 1,
});