StacOpacity constructor

const StacOpacity({
  1. required double opacity,
  2. bool? alwaysIncludeSemantics,
  3. StacWidget? child,
})

Creates a StacOpacity with the given properties.

Implementation

const StacOpacity({
  required this.opacity,
  this.alwaysIncludeSemantics,
  this.child,
});