bind method
CellText
bind({
- ValueCell<
String> ? data, - ValueCell<
TextStyle?> ? style, - ValueCell<
StrutStyle?> ? strutStyle, - ValueCell<
TextAlign?> ? textAlign, - ValueCell<
TextDirection?> ? textDirection, - ValueCell<
Locale?> ? locale, - ValueCell<
bool?> ? softWrap, - ValueCell<
TextOverflow?> ? overflow, - ValueCell<
double?> ? textScaleFactor, - ValueCell<
TextScaler?> ? textScaler, - ValueCell<
int?> ? maxLines, - ValueCell<
String?> ? semanticsLabel, - ValueCell<
TextWidthBasis?> ? textWidthBasis, - ValueCell<
TextHeightBehavior?> ? textHeightBehavior, - ValueCell<
Color?> ? selectionColor,
Implementation
CellText bind({
ValueCell<String>? data,
ValueCell<TextStyle?>? style,
ValueCell<StrutStyle?>? strutStyle,
ValueCell<TextAlign?>? textAlign,
ValueCell<TextDirection?>? textDirection,
ValueCell<Locale?>? locale,
ValueCell<bool?>? softWrap,
ValueCell<TextOverflow?>? overflow,
ValueCell<double?>? textScaleFactor,
ValueCell<TextScaler?>? textScaler,
ValueCell<int?>? maxLines,
ValueCell<String?>? semanticsLabel,
ValueCell<TextWidthBasis?>? textWidthBasis,
ValueCell<TextHeightBehavior?>? textHeightBehavior,
ValueCell<Color?>? selectionColor,
}) =>
CellText(
data: data ?? this.data,
style: style ?? this.style,
strutStyle: strutStyle ?? this.strutStyle,
textAlign: textAlign ?? this.textAlign,
textDirection: textDirection ?? this.textDirection,
locale: locale ?? this.locale,
softWrap: softWrap ?? this.softWrap,
overflow: overflow ?? this.overflow,
textScaleFactor: textScaleFactor ?? this.textScaleFactor,
textScaler: textScaler ?? this.textScaler,
maxLines: maxLines ?? this.maxLines,
semanticsLabel: semanticsLabel ?? this.semanticsLabel,
textWidthBasis: textWidthBasis ?? this.textWidthBasis,
textHeightBehavior: textHeightBehavior ?? this.textHeightBehavior,
selectionColor: selectionColor ?? this.selectionColor,
);