bind method

CellAnimatedSize bind({
  1. ValueCell<Widget?>? child,
  2. ValueCell<AlignmentGeometry>? alignment,
  3. ValueCell<Curve>? curve,
  4. ValueCell<Duration>? duration,
  5. ValueCell<Duration?>? reverseDuration,
  6. ValueCell<Clip>? clipBehavior,
  7. ValueCell<void Function()?>? onEnd,
})

Implementation

CellAnimatedSize bind({
  ValueCell<Widget?>? child,
  ValueCell<AlignmentGeometry>? alignment,
  ValueCell<Curve>? curve,
  ValueCell<Duration>? duration,
  ValueCell<Duration?>? reverseDuration,
  ValueCell<Clip>? clipBehavior,
  ValueCell<void Function()?>? onEnd,
}) =>
    CellAnimatedSize(
      child: child ?? this.child,
      alignment: alignment ?? this.alignment,
      curve: curve ?? this.curve,
      duration: duration ?? this.duration,
      reverseDuration: reverseDuration ?? this.reverseDuration,
      clipBehavior: clipBehavior ?? this.clipBehavior,
      onEnd: onEnd ?? this.onEnd,
    );