withAlpha method

ColorCSS withAlpha(
  1. int a
)

Implementation

ColorCSS withAlpha(int a) {
  return ColorCSS.fromARGB(a, red, green, blue);
}