bind method
CellAnimatedCrossFade
bind({
- ValueCell<
Widget> ? firstChild, - ValueCell<
Widget> ? secondChild, - ValueCell<
Curve> ? firstCurve, - ValueCell<
Curve> ? secondCurve, - ValueCell<
Curve> ? sizeCurve, - ValueCell<
AlignmentGeometry> ? alignment, - ValueCell<
CrossFadeState> ? crossFadeState, - ValueCell<
Duration> ? duration, - ValueCell<
Duration?> ? reverseDuration, - ValueCell<
Widget Function(Widget, Key, Widget, Key)> ? layoutBuilder, - ValueCell<
bool> ? excludeBottomFocus,
Implementation
CellAnimatedCrossFade bind({
ValueCell<Widget>? firstChild,
ValueCell<Widget>? secondChild,
ValueCell<Curve>? firstCurve,
ValueCell<Curve>? secondCurve,
ValueCell<Curve>? sizeCurve,
ValueCell<AlignmentGeometry>? alignment,
ValueCell<CrossFadeState>? crossFadeState,
ValueCell<Duration>? duration,
ValueCell<Duration?>? reverseDuration,
ValueCell<Widget Function(Widget, Key, Widget, Key)>? layoutBuilder,
ValueCell<bool>? excludeBottomFocus,
}) =>
CellAnimatedCrossFade(
firstChild: firstChild ?? this.firstChild,
secondChild: secondChild ?? this.secondChild,
firstCurve: firstCurve ?? this.firstCurve,
secondCurve: secondCurve ?? this.secondCurve,
sizeCurve: sizeCurve ?? this.sizeCurve,
alignment: alignment ?? this.alignment,
crossFadeState: crossFadeState ?? this.crossFadeState,
duration: duration ?? this.duration,
reverseDuration: reverseDuration ?? this.reverseDuration,
layoutBuilder: layoutBuilder ?? this.layoutBuilder,
excludeBottomFocus: excludeBottomFocus ?? this.excludeBottomFocus,
);