Returns this HspColor modified with the provided alpha value.
HspColor
alpha
@override HspColor withAlpha(int alpha) { assert(alpha >= 0 && alpha <= 255); return HspColor(hue, saturation, perceivedBrightness, alpha); }