toFactoredList method

List<double> toFactoredList()

Returns a fixed-length list containing the cyan, magenta, yelllow, and black values factored to be on 0 to 1 scale.

Implementation

List<double> toFactoredList() =>
    toList().map((cmykValue) => cmykValue / 100).toList(growable: false);