FollyCell.textCenter constructor
FollyCell.textCenter(})
Implementation
FollyCell.textCenter(
String text, {
EdgeInsets padding = EdgeInsets.zero,
Alignment align = Alignment.center,
Color color = Colors.transparent,
TextAlign textAlign = TextAlign.center,
TextStyle? style,
bool selectable = false,
Key? key,
}) : this._text(
text,
padding: padding,
align: align,
color: color,
textAlign: textAlign,
style: style,
selectable: selectable,
key: key,
);