withHue method

PdfColorHsl withHue(
  1. double hue
)

Returns a copy with a different hue value.

Implementation

PdfColorHsl withHue(double hue) {
  return PdfColorHsl(hue, saturation, lightness, alpha);
}