CellAnimatedSize constructor
const
CellAnimatedSize({
- Key? key,
- ValueCell<
Widget?> ? child, - ValueCell<
AlignmentGeometry> alignment = const ValueCell.value(Alignment.center), - ValueCell<
Curve> curve = const ValueCell.value(Curves.linear), - required ValueCell<
Duration> duration, - ValueCell<
Duration?> ? reverseDuration, - ValueCell<
Clip> clipBehavior = const ValueCell.value(Clip.hardEdge), - 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,
});