TableSchema constructor

const TableSchema(
  1. String name, {
  2. Map<String, ColumnSchema> columns = const {},
  3. List<TableConstraint> constraints = const [],
  4. List<TableIndex> indexes = const [],
})

Implementation

const TableSchema(
  this.name, {
  this.columns = const {},
  this.constraints = const [],
  this.indexes = const [],
});