clearParams method

Sqler clearParams()

Clears all parameters from the query.

Returns this to enable method chaining.

Example:

query.clearParams(); // Removes all named parameters

Implementation

Sqler clearParams() {
  _params = {};
  return this;
}