InsertStmt constructor

InsertStmt(
  1. String table,
  2. List<String>? columns,
  3. List<List<Expr>>? rows, {
  4. InsertMode mode = InsertMode.normal,
  5. SelectStmt? select,
  6. List<SelectItem>? returning,
  7. Map<String, SelectStmt> ctes = const {},
  8. Map<String, List<String>> cteColumns = const {},
  9. bool ctesRecursive = false,
  10. OnConflictClause? onConflict,
})

Implementation

InsertStmt(
  this.table,
  this.columns,
  this.rows, {
  this.mode = InsertMode.normal,
  this.select,
  this.returning,
  this.ctes = const {},
  this.cteColumns = const {},
  this.ctesRecursive = false,
  this.onConflict,
});