bind method

CellAnimatedPositionedDirectional bind({
  1. ValueCell<Widget>? child,
  2. ValueCell<double?>? start,
  3. ValueCell<double?>? top,
  4. ValueCell<double?>? end,
  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

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,
    );