CellAnimatedPositioned constructor

const CellAnimatedPositioned({
  1. Key? key,
  2. required ValueCell<Widget> child,
  3. ValueCell<double?>? left,
  4. ValueCell<double?>? top,
  5. ValueCell<double?>? right,
  6. ValueCell<double?>? bottom,
  7. ValueCell<double?>? width,
  8. ValueCell<double?>? height,
  9. ValueCell<Curve> curve = const ValueCell.value(Curves.linear),
  10. required ValueCell<Duration> duration,
  11. ValueCell<void Function()?>? onEnd,
})

Implementation

const CellAnimatedPositioned({
  super.key,
  required this.child,
  this.left,
  this.top,
  this.right,
  this.bottom,
  this.width,
  this.height,
  this.curve = const ValueCell.value(Curves.linear),
  required this.duration,
  this.onEnd,
});