bind method

CellAnimatedSlide bind({
  1. ValueCell<Widget?>? child,
  2. ValueCell<Offset>? offset,
  3. ValueCell<Curve>? curve,
  4. ValueCell<Duration>? duration,
  5. ValueCell<void Function()?>? onEnd,
})

Implementation

CellAnimatedSlide bind({
  ValueCell<Widget?>? child,
  ValueCell<Offset>? offset,
  ValueCell<Curve>? curve,
  ValueCell<Duration>? duration,
  ValueCell<void Function()?>? onEnd,
}) =>
    CellAnimatedSlide(
      child: child ?? this.child,
      offset: offset ?? this.offset,
      curve: curve ?? this.curve,
      duration: duration ?? this.duration,
      onEnd: onEnd ?? this.onEnd,
    );