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