bind method
Implementation
CellAnimatedFractionallySizedBox bind({
ValueCell<AlignmentGeometry>? alignment,
ValueCell<Widget?>? child,
ValueCell<double?>? heightFactor,
ValueCell<double?>? widthFactor,
ValueCell<Curve>? curve,
ValueCell<Duration>? duration,
ValueCell<void Function()?>? onEnd,
}) =>
CellAnimatedFractionallySizedBox(
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,
);