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