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