Returns a copy of this color with the given HSL saturation (0..1).
saturation
Color withSaturation(double saturation) => HSLColor.fromColor(this) .withSaturation(saturation.clamp(0.0, 1.0)) .toColor();