withOpacity static method

Color withOpacity(
  1. Color color,
  2. double opacity
)

Creates a color with opacity

Implementation

static Color withOpacity(Color color, double opacity) {
  return Color.fromRGBO(
    color.red,
    color.green,
    color.blue,
    opacity,
  );
}