removeUpdate method

Sqler removeUpdate(
  1. String field
)

Removes a specific field from the UPDATE SET clause.

field The field name to remove from UPDATE. Returns this to enable method chaining.

Example:

query.removeUpdate('email'); // Removes email field from UPDATE SET

Implementation

Sqler removeUpdate(String field) {
  _update.remove(field);
  return this;
}