toFactoredList method

List<double> toFactoredList()
inherited

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

Implementation

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