bind method

CellAnimatedPositioned bind({
  1. ValueCell<Widget>? child,
  2. ValueCell<double?>? left,
  3. ValueCell<double?>? top,
  4. ValueCell<double?>? right,
  5. ValueCell<double?>? bottom,
  6. ValueCell<double?>? width,
  7. ValueCell<double?>? height,
  8. ValueCell<Curve>? curve,
  9. ValueCell<Duration>? duration,
  10. 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,
    );