bind method
Implementation
CellAnimatedRotation bind({
ValueCell<Widget?>? child,
ValueCell<double>? turns,
ValueCell<Alignment>? alignment,
ValueCell<FilterQuality?>? filterQuality,
ValueCell<Curve>? curve,
ValueCell<Duration>? duration,
ValueCell<void Function()?>? onEnd,
}) =>
CellAnimatedRotation(
child: child ?? this.child,
turns: turns ?? this.turns,
alignment: alignment ?? this.alignment,
filterQuality: filterQuality ?? this.filterQuality,
curve: curve ?? this.curve,
duration: duration ?? this.duration,
onEnd: onEnd ?? this.onEnd,
);