bind method
Implementation
CellDefaultTextStyle bind({
ValueCell<TextStyle>? style,
ValueCell<TextAlign?>? textAlign,
ValueCell<bool>? softWrap,
ValueCell<TextOverflow>? overflow,
ValueCell<int?>? maxLines,
ValueCell<TextWidthBasis>? textWidthBasis,
ValueCell<TextHeightBehavior?>? textHeightBehavior,
ValueCell<Widget>? child,
}) =>
CellDefaultTextStyle(
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,
child: child ?? this.child,
);