TypographyText constructor

const TypographyText(
  1. String text, {
  2. Key? key,
  3. bool code = false,
  4. TypographyCopyable? copyable,
  5. bool delete = false,
  6. bool disable = false,
  7. TypographyEditable? editable,
  8. TypographyEllipsis? ellipsis,
  9. bool keyboard = false,
  10. bool mark = false,
  11. void onClick()?,
  12. bool strong = false,
  13. bool italic = false,
  14. TypographyType type = TypographyType.secondary,
  15. bool underline = false,
})

Implementation

const TypographyText(
  this.text, {
  Key? key,
  this.code = false,
  this.copyable,
  this.delete = false,
  this.disable = false,
  this.editable,
  this.ellipsis,
  this.keyboard = false,
  this.mark = false,
  this.onClick,
  this.strong = false,
  this.italic = false,
  this.type = TypographyType.secondary,
  this.underline = false,
}) : super(key: key);