withSaturation method
Create a copy of this HSL color with a different saturation value
Implementation
PdfColorHsl withSaturation(double saturation) {
return PdfColorHsl(hue, saturation, lightness, alpha);
}
Create a copy of this HSL color with a different saturation value
PdfColorHsl withSaturation(double saturation) {
return PdfColorHsl(hue, saturation, lightness, alpha);
}