CellDefaultTextStyle constructor

const CellDefaultTextStyle({
  1. Key? key,
  2. required ValueCell<TextStyle> style,
  3. ValueCell<TextAlign?>? textAlign,
  4. ValueCell<bool> softWrap = const ValueCell.value(true),
  5. ValueCell<TextOverflow> overflow = const ValueCell.value(TextOverflow.clip),
  6. ValueCell<int?>? maxLines,
  7. ValueCell<TextWidthBasis> textWidthBasis = const ValueCell.value(TextWidthBasis.parent),
  8. ValueCell<TextHeightBehavior?>? textHeightBehavior,
  9. required ValueCell<Widget> child,
})

Implementation

const CellDefaultTextStyle({
  super.key,
  required this.style,
  this.textAlign,
  this.softWrap = const ValueCell.value(true),
  this.overflow = const ValueCell.value(TextOverflow.clip),
  this.maxLines,
  this.textWidthBasis = const ValueCell.value(TextWidthBasis.parent),
  this.textHeightBehavior,
  required this.child,
});