bind method
Implementation
CellAnimatedSwitcher bind({
ValueCell<Widget?>? child,
ValueCell<Duration>? duration,
ValueCell<Duration?>? reverseDuration,
ValueCell<Curve>? switchInCurve,
ValueCell<Curve>? switchOutCurve,
ValueCell<Widget Function(Widget, Animation<double>)>? transitionBuilder,
ValueCell<AnimatedSwitcherLayoutBuilder>? layoutBuilder,
}) =>
CellAnimatedSwitcher(
child: child ?? this.child,
duration: duration ?? this.duration,
reverseDuration: reverseDuration ?? this.reverseDuration,
switchInCurve: switchInCurve ?? this.switchInCurve,
switchOutCurve: switchOutCurve ?? this.switchOutCurve,
transitionBuilder: transitionBuilder ?? this.transitionBuilder,
layoutBuilder: layoutBuilder ?? this.layoutBuilder,
);