withOpacity static method

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

Implementation

static Color withOpacity(Color color, double opacity) {
  return color.withAlpha((opacity * 255).round());
}