SizeTransition constructor Null safety
Creates a size transition.
The axis, sizeFactor
, and axisAlignment arguments must not be null.
The axis argument defaults to Axis.vertical. The axisAlignment
defaults to 0.0, which centers the child along the main axis during the
transition.
Implementation
const SizeTransition({
super.key,
this.axis = Axis.vertical,
required Animation<double> sizeFactor,
this.axisAlignment = 0.0,
this.child,
}) : assert(axis != null),
assert(sizeFactor != null),
assert(axisAlignment != null),
super(listenable: sizeFactor);