bind method

CellAnimatedScale bind({
  1. ValueCell<Widget?>? child,
  2. ValueCell<double>? scale,
  3. ValueCell<Alignment>? alignment,
  4. ValueCell<FilterQuality?>? filterQuality,
  5. ValueCell<Curve>? curve,
  6. ValueCell<Duration>? duration,
  7. ValueCell<void Function()?>? onEnd,
})

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,
    );