setMaxLines method

RichTextGenerator setMaxLines(
  1. int maxLine
)

设置最多文案显示几行 默认是100行

Implementation

RichTextGenerator setMaxLines(int maxLine) {
  if (maxLine > 0) {
    _maxLine = maxLine;
  }
  return this;
}