DisplayLg constructor

const DisplayLg(
  1. String text, {
  2. Key? key,
  3. bool bold = false,
  4. bool italic = false,
  5. bool gray = false,
  6. Color? customColor,
  7. TextAlign? align,
  8. int? maxLines,
  9. TextOverflow? overflow,
  10. TextDecoration? decoration,
  11. TextDecorationStyle? decorationStyle,
})

Implementation

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