FollyCell.textHeaderRight constructor

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

Implementation

FollyCell.textHeaderRight(
    String text, {
      EdgeInsets padding = EdgeInsets.zero,
      Alignment align = Alignment.bottomRight,
      Color color = Colors.transparent,
      TextAlign textAlign = TextAlign.right,
      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,
);