CellAnimatedDefaultTextStyle constructor
const
CellAnimatedDefaultTextStyle({
- Key? key,
- required ValueCell<
Widget> child, - 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, - ValueCell<
Curve> curve = const ValueCell.value(Curves.linear), - required ValueCell<
Duration> duration, - ValueCell<
void Function()?> ? onEnd,
Implementation
const CellAnimatedDefaultTextStyle({
super.key,
required this.child,
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,
this.curve = const ValueCell.value(Curves.linear),
required this.duration,
this.onEnd,
});