Options constructor

Options({
  1. dynamic colorType = ColorType.random,
  2. Luminosity luminosity = Luminosity.random,
  3. Format format = Format.rgb,
  4. double? alpha,
  5. int count = 1,
})

Implementation

Options({
  this.colorType = ColorType.random,
  this.luminosity = Luminosity.random,
  this.format = Format.rgb,
  this.alpha,
  this.count = 1,
});