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