CellAnimatedSize constructor

const CellAnimatedSize({
  1. Key? key,
  2. ValueCell<Widget?>? child,
  3. ValueCell<AlignmentGeometry> alignment = const ValueCell.value(Alignment.center),
  4. ValueCell<Curve> curve = const ValueCell.value(Curves.linear),
  5. required ValueCell<Duration> duration,
  6. ValueCell<Duration?>? reverseDuration,
  7. ValueCell<Clip> clipBehavior = const ValueCell.value(Clip.hardEdge),
  8. ValueCell<void Function()?>? onEnd,
})

Implementation

const CellAnimatedSize({
  super.key,
  this.child,
  this.alignment = const ValueCell.value(Alignment.center),
  this.curve = const ValueCell.value(Curves.linear),
  required this.duration,
  this.reverseDuration,
  this.clipBehavior = const ValueCell.value(Clip.hardEdge),
  this.onEnd,
});