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