replaceLine method

void replaceLine(
  1. AFCommandContext context,
  2. int idx,
  3. String value
)

Replaces the line at the specified index.

Implementation

void replaceLine(AFCommandContext context, int idx, String value) {
  lines[idx] = value;
}