bind method
Implementation
CellAnimatedSize bind({
ValueCell<Widget?>? child,
ValueCell<AlignmentGeometry>? alignment,
ValueCell<Curve>? curve,
ValueCell<Duration>? duration,
ValueCell<Duration?>? reverseDuration,
ValueCell<Clip>? clipBehavior,
ValueCell<void Function()?>? onEnd,
}) =>
CellAnimatedSize(
child: child ?? this.child,
alignment: alignment ?? this.alignment,
curve: curve ?? this.curve,
duration: duration ?? this.duration,
reverseDuration: reverseDuration ?? this.reverseDuration,
clipBehavior: clipBehavior ?? this.clipBehavior,
onEnd: onEnd ?? this.onEnd,
);