ColorRAL constructor

ColorRAL({
  1. required String hex,
  2. required String websafe,
  3. required Rgb rgb,
  4. required Hsl hsl,
  5. required Hsb hsb,
  6. required Cmyk cmyk,
})

Implementation

ColorRAL({
  required this.hex,
  required this.websafe,
  required this.rgb,
  required this.hsl,
  required this.hsb,
  required this.cmyk,
});