Hsl constructor

Hsl({
  1. required int h,
  2. required int s,
  3. required int l,
})

Implementation

Hsl({
  required this.h,
  required this.s,
  required this.l,
});