toFactoredListWithAlpha method
Returns a fixed-length list containing the cyan
, magenta
, yelllow
,
black
, and alpha
values factored to be on 0 to 1 scale.
Implementation
List<double> toFactoredListWithAlpha() => List<double>.from(<double>[
cyan / 100,
magenta / 100,
yellow / 100,
black / 100,
alpha / 255,
], growable: false);