setParam method

void setParam(
  1. String key,
  2. String value
)

Sets a path parameter.

Implementation

void setParam(String key, String value) {
  _pathParams[key] = value;
}