removeParam method

Sqler removeParam(
  1. String key
)

Removes a parameter from the query by its key.

key The parameter key to remove. Returns this to enable method chaining.

Example:

query.removeParam('userId'); // Removes the userId parameter

Implementation

Sqler removeParam(String key) {
  _params.remove(key);
  return this;
}