toFactoredList method
Returns a fixed-length list containing the hue
, saturation
,
and lightness
values factored to be on 0 to 1 scale.
Implementation
List<double> toFactoredList() => List<double>.from(<double>[
hue / 360,
saturation / 100,
lightness / 100,
], growable: false);