EasyText constructor

const EasyText(
  1. String text, {
  2. Key? key,
  3. EasyThemeType? type,
  4. bool? italic,
  5. bool? disable,
  6. bool? underline,
  7. bool? delete,
  8. bool? strong,
  9. bool? mark,
  10. bool? code,
})

文本

支持删除、标记、加粗、斜体、下划线

Implementation

const EasyText(
  this.text, {
  Key? key,
  this.type,
  this.italic,
  this.disable,
  this.underline,
  this.delete,
  this.strong,
  this.mark,
  this.code,
}) : super(key: key);