addParams method
Adds multiple parameters to the query for parameterized queries.
params
Map of parameter key-value pairs to add.
Returns this
to enable method chaining.
Example:
query.addParams({'userId': QVar(123), 'status': QVar('active')}); // Adds multiple parameters
Implementation
Sqler addParams(Map<String, QVar> params) {
_params.addAll(params);
return this;
}