HashTagText constructor

HashTagText({
  1. required String text,
  2. required TextStyle basicStyle,
  3. required TextStyle decoratedStyle,
  4. bool decorateAtSign = false,
  5. dynamic onTap(
    1. String
    )?,
  6. TextAlign textAlign = TextAlign.start,
  7. TextDirection? textDirection,
  8. bool softWrap = true,
  9. TextOverflow overflow = TextOverflow.clip,
  10. double textScaleFactor = 1.0,
  11. int? maxLines,
  12. Locale? locale,
  13. StrutStyle? strutStyle,
  14. TextWidthBasis textWidthBasis = TextWidthBasis.parent,
  15. TextHeightBehavior? textHeightBehavior,
})

Implementation

HashTagText(
    {required this.text,
    required this.basicStyle,
    required this.decoratedStyle,
    this.decorateAtSign = false,
    this.onTap,
    this.textAlign = TextAlign.start,
    this.textDirection,
    this.softWrap = true,
    this.overflow = TextOverflow.clip,
    this.textScaleFactor = 1.0,
    this.maxLines,
    this.locale,
    this.strutStyle,
    this.textWidthBasis = TextWidthBasis.parent,
    this.textHeightBehavior});