appendLine method

void appendLine(
  1. String line
)

Adds the specified line at the end of the file.

Implementation

void appendLine(String line) {
  lines.add(line);
}