CellAnimatedPositionedDirectional constructor
const
CellAnimatedPositionedDirectional({
- Key? key,
- required ValueCell<
Widget> child, - ValueCell<
double?> ? start, - ValueCell<
double?> ? top, - ValueCell<
double?> ? end, - ValueCell<
double?> ? bottom, - ValueCell<
double?> ? width, - ValueCell<
double?> ? height, - ValueCell<
Curve> curve = const ValueCell.value(Curves.linear), - required ValueCell<
Duration> duration, - ValueCell<
void Function()?> ? onEnd,
Implementation
const CellAnimatedPositionedDirectional({
super.key,
required this.child,
this.start,
this.top,
this.end,
this.bottom,
this.width,
this.height,
this.curve = const ValueCell.value(Curves.linear),
required this.duration,
this.onEnd,
});