update static method

Update update(
  1. String table, {
  2. Expression? where,
})

Creates a new Update statement

Implementation

static Update update(String table, {Expression? where}) =>
    Update(table, where: where);