removeEmptyLastLine method

void removeEmptyLastLine()

Implementation

void removeEmptyLastLine() {
  if (lineIsEmpty()) {
    _lines.removeLast();
  }
}