.withOpacity deprecated in Flutter 3.27.0, and what is its recommended replacement?

// Before
final x = color.withOpacity(0.0);

// After
final x = color.withValues(alpha: 0.0);