TypographyBase constructor

const TypographyBase(
  1. String title, {
  2. Key? key,
  3. required EasyTextLevel level,
  4. EasyThemeType? type,
  5. bool? italic,
  6. bool? disable,
  7. bool? underline,
  8. bool? delete,
  9. bool? link,
  10. bool? strong,
  11. bool? mark,
  12. bool? code,
  13. bool? ellipsis,
  14. int? maxLines,
})

Implementation

const TypographyBase(
  this.title, {
  Key? key,
  required this.level,
  this.type,
  this.italic,
  this.disable,
  this.underline,
  this.delete,
  this.link,
  this.strong,
  this.mark,
  this.code,
  this.ellipsis,
  this.maxLines,
}) : super(key: key);