FollyCell.textHeader constructor

FollyCell.textHeader(
  1. String text, {
  2. EdgeInsets padding = EdgeInsets.zero,
  3. Alignment align = Alignment.bottomLeft,
  4. Color color = Colors.transparent,
  5. TextAlign textAlign = TextAlign.left,
  6. TextStyle style = const TextStyle(fontWeight: FontWeight.bold),
  7. bool selectable = false,
  8. Key? key,
})

Implementation

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