bind method
CellAnimatedPositionedDirectional
bind(
{ - ValueCell<Widget>? child,
- ValueCell<double?>? start,
- ValueCell<double?>? top,
- ValueCell<double?>? end,
- ValueCell<double?>? bottom,
- ValueCell<double?>? width,
- ValueCell<double?>? height,
- ValueCell<Curve>? curve,
- ValueCell<Duration>? duration,
- ValueCell<void Function()?>? onEnd,
})
Implementation
CellAnimatedPositionedDirectional bind({
ValueCell<Widget>? child,
ValueCell<double?>? start,
ValueCell<double?>? top,
ValueCell<double?>? end,
ValueCell<double?>? bottom,
ValueCell<double?>? width,
ValueCell<double?>? height,
ValueCell<Curve>? curve,
ValueCell<Duration>? duration,
ValueCell<void Function()?>? onEnd,
}) =>
CellAnimatedPositionedDirectional(
child: child ?? this.child,
start: start ?? this.start,
top: top ?? this.top,
end: end ?? this.end,
bottom: bottom ?? this.bottom,
width: width ?? this.width,
height: height ?? this.height,
curve: curve ?? this.curve,
duration: duration ?? this.duration,
onEnd: onEnd ?? this.onEnd,
);