CustomText constructor

const CustomText(
  1. String keyString, {
  2. Key? key,
  3. TextStyle? style,
  4. TextAlign? textAlign,
  5. int? maxLines,
  6. TextOverflow? overflow,
  7. bool? softWrap,
  8. TextDecoration? decoration,
  9. double? letterSpacing,
  10. double? wordSpacing,
})

Implementation

const CustomText(
    this.keyString, {
      Key? key,
      this.style,
      this.textAlign,
      this.maxLines,
      this.overflow,
      this.softWrap,
      this.decoration,
      this.letterSpacing,
      this.wordSpacing,
    }) : super(key: key);