CellText constructor

const CellText({
  1. Key? key,
  2. required ValueCell<String> data,
  3. ValueCell<TextStyle?>? style,
  4. ValueCell<StrutStyle?>? strutStyle,
  5. ValueCell<TextAlign?>? textAlign,
  6. ValueCell<TextDirection?>? textDirection,
  7. ValueCell<Locale?>? locale,
  8. ValueCell<bool?>? softWrap,
  9. ValueCell<TextOverflow?>? overflow,
  10. ValueCell<double?>? textScaleFactor,
  11. ValueCell<TextScaler?>? textScaler,
  12. ValueCell<int?>? maxLines,
  13. ValueCell<String?>? semanticsLabel,
  14. ValueCell<TextWidthBasis?>? textWidthBasis,
  15. ValueCell<TextHeightBehavior?>? textHeightBehavior,
  16. ValueCell<Color?>? selectionColor,
})

Implementation

const CellText({
  super.key,
  required this.data,
  this.style,
  this.strutStyle,
  this.textAlign,
  this.textDirection,
  this.locale,
  this.softWrap,
  this.overflow,
  this.textScaleFactor,
  this.textScaler,
  this.maxLines,
  this.semanticsLabel,
  this.textWidthBasis,
  this.textHeightBehavior,
  this.selectionColor,
});