CustomTxt constructor

CustomTxt(
  1. String value, {
  2. Key? key,
  3. String? fontFamily,
  4. int maxLine = 0,
  5. double? textSize,
  6. Color? textColor,
  7. TextAlign? textAlign,
  8. Rich? rich,
  9. Locale? locale,
  10. TextDecoration? textDecoration = TextDecoration.none,
  11. TextDirection? textDirection,
  12. TextStyle textStyle(
    1. TextStyle value
    )?,
  13. TextOverflow? textOverflow,
})

Implementation

CustomTxt(this.value,
    { Key? key,
      this.fontFamily,
      this.maxLine = 0,
      this.textSize,
      this.textColor,
      this.textAlign,
      this.rich,
      this.locale,
      this.textDecoration = TextDecoration.none,
      this.textDirection,
      this.textStyle,
      this.textOverflow})
    :super(key: key);