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