create static method

Create create(
  1. String table, {
  2. bool ifNotExists = false,
})

Returns a new Create statement

Implementation

static Create create(String table, {bool ifNotExists = false}) =>
    Create(table, ifNotExists: ifNotExists);