Table constructor

Table(
  1. String type,
  2. List<Column> columns, {
  3. List<Field>? fields,
  4. List<Index>? indexes,
})

Implementation

Table(this.type, this.columns, {this.fields, this.indexes});