ImportantAppText constructor

const ImportantAppText(
  1. String data, {
  2. Key? key,
  3. Color? color,
  4. double? fontSize,
  5. FontWeight? fontWeight,
  6. TextAlign? alignment,
  7. int? maxLines,
  8. FontStyle? fontStyle,
  9. double? letterSpacing,
  10. double? wordSpacing,
  11. double? height,
  12. Color? indicatorColor,
  13. double? indicatorFontSize,
  14. FontWeight? indicatorFontWeight,
  15. String indicatorText = '*',
  16. double? indicatorSpacing,
  17. IndicatorPosition indicatorPosition = IndicatorPosition.after,
  18. TextStyle? textStyle,
  19. Color? backgroundColor,
  20. String? semanticsLabel,
  21. bool? enableSecurity,
})

Implementation

const ImportantAppText(
  this.data, {
  super.key,
  this.color,
  this.fontSize,
  this.fontWeight,
  this.alignment,
  this.maxLines,
  this.fontStyle,
  this.letterSpacing,
  this.wordSpacing,
  this.height,
  this.indicatorColor,
  this.indicatorFontSize,
  this.indicatorFontWeight,
  this.indicatorText = '*',
  this.indicatorSpacing,
  this.indicatorPosition = IndicatorPosition.after,
  this.textStyle,
  this.backgroundColor,
  this.semanticsLabel,
  this.enableSecurity,
});