SchemaTable constructor

SchemaTable(
  1. String name, {
  2. Set<SchemaColumn>? columns,
  3. Set<SchemaIndex>? indices,
})

Implementation

SchemaTable(
  this.name, {
  Set<SchemaColumn>? columns,
  Set<SchemaIndex>? indices,
})  : columns = columns ?? <SchemaColumn>{},
      indices = indices ?? <SchemaIndex>{};