withHue method Null safety
- double hue
Returns a copy of this color with the hue
parameter replaced with the
given value.
Implementation
HSVColor withHue(double hue) {
return HSVColor.fromAHSV(alpha, hue, saturation, value);
}
Returns a copy of this color with the hue
parameter replaced with the
given value.
HSVColor withHue(double hue) {
return HSVColor.fromAHSV(alpha, hue, saturation, value);
}