QText constructor

const QText(
  1. String title, {
  2. Key? key,
  3. TextStyle? style,
  4. Color? color,
  5. double? fontSize = 14,
  6. FontWeight? fontWeight,
  7. int? maxLines,
  8. double? letterSpacing,
  9. double? height,
  10. TextDecoration? textDecoration,
  11. TextAlign? textAlign,
  12. TextOverflow? overflow,
})

Implementation

const QText(
  this.title, {
  Key? key,
  this.style,
  this.color,
  this.fontSize = 14,
  this.fontWeight,
  this.maxLines,
  this.letterSpacing,
  this.height,
  this.textDecoration,
  this.textAlign,
  this.overflow,
}) : super(key: key);