colorsWithOpacity static method

Color colorsWithOpacity(
  1. Color c,
  2. double o
)

Implementation

static Color colorsWithOpacity(Color c, double o) {
  return c.withOpacity(o);
}