UpdateStatement constructor

UpdateStatement({
  1. WithClause? withClause,
  2. FailureMode? or,
  3. required TableReference table,
  4. required List<SetComponent> set,
  5. Queryable? from,
  6. Expression? where,
  7. Returning? returning,
})

Implementation

UpdateStatement({
  WithClause? withClause,
  this.or,
  required this.table,
  required this.set,
  this.from,
  this.where,
  this.returning,
}) : super(withClause);