ImosysTextWidget constructor

const ImosysTextWidget({
  1. Key? key,
  2. required String text,
  3. double? size,
  4. FontWeight? fontWeight,
  5. String? fontFamily,
  6. TextDecoration? decoration,
  7. Color? color,
  8. TextAlign? align,
  9. int? maxLines,
  10. TextOverflow? overflow,
  11. double? letterSpacing,
  12. double? wordSpacing,
  13. TextStyle? style,
  14. bool? hasShadow = false,
  15. Color? shadowColor,
  16. Offset? shadowOffset,
  17. double? blurRadius,
})

Implementation

const ImosysTextWidget({
  super.key,
  required this.text,
    this.size,
    this.fontWeight,
    this.fontFamily,
    this.decoration,
    this.color,
    this.align,
    this.maxLines,
    this.overflow,
    this.letterSpacing,
    this.wordSpacing,
    this.style,
    this.hasShadow = false,
    this.shadowColor,
    this.shadowOffset,
    this.blurRadius,
});