setMaxLines method
设置最多文案显示几行 默认是100行
Implementation
RichTextGenerator setMaxLines(int maxLine) {
  if (maxLine > 0) {
    _maxLine = maxLine;
  }
  return this;
}设置最多文案显示几行 默认是100行
RichTextGenerator setMaxLines(int maxLine) {
  if (maxLine > 0) {
    _maxLine = maxLine;
  }
  return this;
}