Color.hsl constructor

const Color.hsl(
  1. int hue,
  2. int saturation,
  3. int lightness
)

Constructs a Color from hue, saturation and lightness values

Implementation

const factory Color.hsl(int hue, int saturation, int lightness) = _HSLColor;