replaceText method

void replaceText(
  1. AFCommandContext context,
  2. dynamic id,
  3. String value
)

Replaces all instances of the specified id with the specified value.

Handles the standard parameters upper and lower.

Implementation

void replaceText(AFCommandContext context, dynamic id, String value) {
  return buffer.replaceText(context, id, value);
}