Update constructor
Update(
- String name, {
- Expression? where,
Implementation
Update(this.name, {Expression? where}) {
if (where != null) this.where(where);
_immutable = ImmutableUpdateStatement(this);
}