TextHyphenated constructor

const TextHyphenated(
  1. String text,
  2. String language, {
  3. String symbol = '\u{00AD}',
  4. TextStyle? style,
  5. GlobalKey<State<StatefulWidget>>? textKey,
  6. StrutStyle? strutStyle,
  7. TextAlign? textAlign,
  8. TextDirection? textDirection,
  9. Locale? locale,
  10. bool? softWrap,
  11. TextOverflow? overflow,
  12. double? textScaleFactor,
  13. int? maxLines,
  14. String? semanticsLabel,
  15. TextWidthBasis? textWidthBasis,
  16. TextHeightBehavior? textHeightBehavior,
  17. Color? selectionColor,
  18. Key? key,
  19. bool doShowDebug = false,
})

Implementation

const TextHyphenated(this.text, this.language,
    {this.symbol = '\u{00AD}',
    this.style,
    this.textKey,
    this.strutStyle,
    this.textAlign,
    this.textDirection,
    this.locale,
    this.softWrap,
    this.overflow,
    this.textScaleFactor,
    this.maxLines,
    this.semanticsLabel,
    this.textWidthBasis,
    this.textHeightBehavior,
    this.selectionColor,
    Key? super.key,
    this.doShowDebug = false});