FollyCell.textHeader constructor
FollyCell.textHeader(})
Implementation
FollyCell.textHeader(
String text, {
EdgeInsets padding = EdgeInsets.zero,
Alignment align = Alignment.bottomLeft,
Color color = Colors.transparent,
TextAlign textAlign = TextAlign.left,
TextStyle style = const TextStyle(
fontWeight: FontWeight.bold,
),
bool selectable = false,
Key? key,
}) : this._text(
text,
padding: padding,
align: align,
color: color,
textAlign: textAlign,
style: style,
selectable: selectable,
key: key,
);