saturation property

double saturation

This color's saturation, a percentage between 0 and 100.

Implementation

double get saturation {
  if (_saturation == null) _rgbToHsl();
  return _saturation!;
}