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