Opacity constructor Null safety
Creates a widget that makes its child partially transparent.
The opacity argument must not be null and must be between 0.0 and 1.0 (inclusive).
Implementation
const Opacity({
super.key,
required this.opacity,
this.alwaysIncludeSemantics = false,
super.child,
}) : assert(opacity != null && opacity >= 0.0 && opacity <= 1.0),
assert(alwaysIncludeSemantics != null);