TableSchema constructor
const
TableSchema(
- String name, {
- Map<
String, ColumnSchema> columns = const {}, - List<
TableConstraint> constraints = const [], - List<
TableIndex> indexes = const [],
Implementation
const TableSchema(
this.name, {
this.columns = const {},
this.constraints = const [],
this.indexes = const [],
});