CreateViewStmt constructor

CreateViewStmt(
  1. String name,
  2. SelectStmt select, {
  3. bool ifNotExists = false,
  4. String selectSql = '',
})

Implementation

CreateViewStmt(
  this.name,
  this.select, {
  this.ifNotExists = false,
  this.selectSql = '',
});