replaceCommandPart method

void replaceCommandPart(
  1. String part,
  2. String replacement
)

Implementation

void replaceCommandPart(String part, String replacement) {
  _replacedCommand ??= command;
  _replacedCommand = _replacedCommand?.replaceAll(part, replacement);
}