CellAnimatedOpacity constructor

const CellAnimatedOpacity({
  1. Key? key,
  2. ValueCell<Widget?>? child,
  3. required ValueCell<double> opacity,
  4. ValueCell<Curve> curve = const ValueCell.value(Curves.linear),
  5. required ValueCell<Duration> duration,
  6. ValueCell<void Function()?>? onEnd,
  7. ValueCell<bool> alwaysIncludeSemantics = const ValueCell.value(false),
})

Implementation

const CellAnimatedOpacity({
  super.key,
  this.child,
  required this.opacity,
  this.curve = const ValueCell.value(Curves.linear),
  required this.duration,
  this.onEnd,
  this.alwaysIncludeSemantics = const ValueCell.value(false),
});