TitleText constructor

const TitleText(
  1. String text, {
  2. Key? key,
  3. bool bold = false,
  4. bool italic = false,
  5. bool gray = false,
  6. TextAlign? align,
  7. int? maxLines,
  8. TextOverflow? overflow,
})

Implementation

const TitleText(
  this.text, {
  super.key,
  this.bold = false,
  this.italic = false,
  this.gray = false,
  this.align,
  this.maxLines,
  this.overflow,
});