bind method

CellAnimatedAlign bind({
  1. ValueCell<AlignmentGeometry>? alignment,
  2. ValueCell<Widget?>? child,
  3. ValueCell<double?>? heightFactor,
  4. ValueCell<double?>? widthFactor,
  5. ValueCell<Curve>? curve,
  6. ValueCell<Duration>? duration,
  7. ValueCell<void Function()?>? onEnd,
})

Implementation

CellAnimatedAlign bind({
  ValueCell<AlignmentGeometry>? alignment,
  ValueCell<Widget?>? child,
  ValueCell<double?>? heightFactor,
  ValueCell<double?>? widthFactor,
  ValueCell<Curve>? curve,
  ValueCell<Duration>? duration,
  ValueCell<void Function()?>? onEnd,
}) =>
    CellAnimatedAlign(
      alignment: alignment ?? this.alignment,
      child: child ?? this.child,
      heightFactor: heightFactor ?? this.heightFactor,
      widthFactor: widthFactor ?? this.widthFactor,
      curve: curve ?? this.curve,
      duration: duration ?? this.duration,
      onEnd: onEnd ?? this.onEnd,
    );