Returns this HslColor modified with the provided hue value.
HslColor
hue
@override HslColor withHue(num hue) { assert(hue >= 0 && hue <= 360); return HslColor(hue, saturation, lightness, alpha); }