toFactoredList method

List<double> toFactoredList()

Returns a fixed-length list containing the hue, saturation, and intensity values factored to be on 0 to 1 scale.

Implementation

List<double> toFactoredList() => List<double>.from(<double>[
      hue / 360,
      saturation / 100,
      intensity / 100,
    ], growable: false);