removeParam method

void removeParam(
  1. String name
)

Removes a parameter by name.

Throws during compilation if the parameter does not exist.

Implementation

void removeParam(String name) {
  _removals.add(name);
}