CellDefaultTextStyle constructor
const
CellDefaultTextStyle({
- Key? key,
- required ValueCell<
TextStyle> style, - ValueCell<
TextAlign?> ? textAlign, - ValueCell<
bool> softWrap = const ValueCell.value(true), - ValueCell<
TextOverflow> overflow = const ValueCell.value(TextOverflow.clip), - ValueCell<
int?> ? maxLines, - ValueCell<
TextWidthBasis> textWidthBasis = const ValueCell.value(TextWidthBasis.parent), - ValueCell<
TextHeightBehavior?> ? textHeightBehavior, - 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,
});