CreateTriggerStmt constructor

CreateTriggerStmt(
  1. String name,
  2. String timing,
  3. String event,
  4. String table,
  5. Expr? when,
  6. List<Statement> body, {
  7. bool ifNotExists = false,
})

Implementation

CreateTriggerStmt(
  this.name,
  this.timing,
  this.event,
  this.table,
  this.when,
  this.body, {
  this.ifNotExists = false,
});