FleetOpacity constructor

const FleetOpacity({
  1. Key? key,
  2. required double opacity,
  3. bool alwaysIncludeSemantics = false,
  4. Widget? child,
})

Corresponding constructor to Opacity.

Implementation

const FleetOpacity({
  super.key,
  required super.opacity,
  super.alwaysIncludeSemantics,
  super.child,
});