EasyParagraph constructor

const EasyParagraph(
  1. String content, {
  2. Key? key,
  3. bool? ellipsis,
  4. int? maxLines,
})

自然段

支持设置最大行数,自动省略号

Implementation

const EasyParagraph(this.content, {Key? key, this.ellipsis, this.maxLines}) : super(key: key);