appendLineEmpty method

void appendLineEmpty()

Adds an empty line at the end of the file.

Implementation

void appendLineEmpty() {
  modified = true;
  lines.add('');
}