bind method

CellAnimatedDefaultTextStyle bind({
  1. ValueCell<Widget>? child,
  2. ValueCell<TextStyle>? style,
  3. ValueCell<TextAlign?>? textAlign,
  4. ValueCell<bool>? softWrap,
  5. ValueCell<TextOverflow>? overflow,
  6. ValueCell<int?>? maxLines,
  7. ValueCell<TextWidthBasis>? textWidthBasis,
  8. ValueCell<TextHeightBehavior?>? textHeightBehavior,
  9. ValueCell<Curve>? curve,
  10. ValueCell<Duration>? duration,
  11. ValueCell<void Function()?>? onEnd,
})

Implementation

CellAnimatedDefaultTextStyle bind({
  ValueCell<Widget>? child,
  ValueCell<TextStyle>? style,
  ValueCell<TextAlign?>? textAlign,
  ValueCell<bool>? softWrap,
  ValueCell<TextOverflow>? overflow,
  ValueCell<int?>? maxLines,
  ValueCell<TextWidthBasis>? textWidthBasis,
  ValueCell<TextHeightBehavior?>? textHeightBehavior,
  ValueCell<Curve>? curve,
  ValueCell<Duration>? duration,
  ValueCell<void Function()?>? onEnd,
}) =>
    CellAnimatedDefaultTextStyle(
      child: child ?? this.child,
      style: style ?? this.style,
      textAlign: textAlign ?? this.textAlign,
      softWrap: softWrap ?? this.softWrap,
      overflow: overflow ?? this.overflow,
      maxLines: maxLines ?? this.maxLines,
      textWidthBasis: textWidthBasis ?? this.textWidthBasis,
      textHeightBehavior: textHeightBehavior ?? this.textHeightBehavior,
      curve: curve ?? this.curve,
      duration: duration ?? this.duration,
      onEnd: onEnd ?? this.onEnd,
    );