CreateTableStmt constructor

CreateTableStmt({
  1. required String table,
  2. required Schema schema,
  3. bool ifNotExists = false,
})

Implementation

CreateTableStmt({
  required this.table,
  required this.schema,
  this.ifNotExists = false,
});