appendLineEmpty method
void
appendLineEmpty()
Adds an empty line at the end of the file.
Implementation
void appendLineEmpty() {
modified = true;
lines.add('');
}
Adds an empty line at the end of the file.
void appendLineEmpty() {
modified = true;
lines.add('');
}