CellAnimatedSlide constructor

const CellAnimatedSlide({
  1. Key? key,
  2. ValueCell<Widget?>? child,
  3. required ValueCell<Offset> offset,
  4. ValueCell<Curve> curve = const ValueCell.value(Curves.linear),
  5. required ValueCell<Duration> duration,
  6. ValueCell<void Function()?>? onEnd,
})

Implementation

const CellAnimatedSlide({
  super.key,
  this.child,
  required this.offset,
  this.curve = const ValueCell.value(Curves.linear),
  required this.duration,
  this.onEnd,
});