EasyTitle constructor

const EasyTitle(
  1. String title, {
  2. Key? key,
  3. EasyTextLevel? level,
  4. EasyThemeType? type,
  5. bool? italic,
  6. bool? disable,
  7. bool? underline,
  8. bool? delete,
})

标题,支持 h1-h5 样式,默认:h1

Implementation

const EasyTitle(
  this.title, {
  Key? key,
  this.level,
  this.type,
  this.italic,
  this.disable,
  this.underline,
  this.delete,
}) : super(key: key);