bind method
Implementation
CellAnimatedSlide bind({
ValueCell<Widget?>? child,
ValueCell<Offset>? offset,
ValueCell<Curve>? curve,
ValueCell<Duration>? duration,
ValueCell<void Function()?>? onEnd,
}) =>
CellAnimatedSlide(
child: child ?? this.child,
offset: offset ?? this.offset,
curve: curve ?? this.curve,
duration: duration ?? this.duration,
onEnd: onEnd ?? this.onEnd,
);