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