bind method

CellText bind({
  1. ValueCell<String>? data,
  2. ValueCell<TextStyle?>? style,
  3. ValueCell<StrutStyle?>? strutStyle,
  4. ValueCell<TextAlign?>? textAlign,
  5. ValueCell<TextDirection?>? textDirection,
  6. ValueCell<Locale?>? locale,
  7. ValueCell<bool?>? softWrap,
  8. ValueCell<TextOverflow?>? overflow,
  9. ValueCell<double?>? textScaleFactor,
  10. ValueCell<TextScaler?>? textScaler,
  11. ValueCell<int?>? maxLines,
  12. ValueCell<String?>? semanticsLabel,
  13. ValueCell<TextWidthBasis?>? textWidthBasis,
  14. ValueCell<TextHeightBehavior?>? textHeightBehavior,
  15. 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,
    );