int maxLines

Whether to paint the cursor.

Source

int get maxLines => _maxLines;
void maxLines=(int value)

Source

set maxLines(int value) {
  if (_maxLines == value)
    return;
  _maxLines = value;
  markNeedsLayout();
}