CellAnimatedScale constructor
const
CellAnimatedScale({
- Key? key,
- ValueCell<
Widget?> ? child, - required ValueCell<
double> scale, - ValueCell<
Alignment> alignment = const ValueCell.value(Alignment.center), - ValueCell<
FilterQuality?> ? filterQuality, - ValueCell<
Curve> curve = const ValueCell.value(Curves.linear), - required ValueCell<
Duration> duration, - ValueCell<
void Function()?> ? onEnd,
Implementation
const CellAnimatedScale({
super.key,
this.child,
required this.scale,
this.alignment = const ValueCell.value(Alignment.center),
this.filterQuality,
this.curve = const ValueCell.value(Curves.linear),
required this.duration,
this.onEnd,
});