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