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