TableSchema constructor
TableSchema({
- required List<
ColumnSchema> columns, - required String name,
- required String key,
- bool synchronize = true,
Implementation
TableSchema({
required this.columns,
required this.name,
required this.key,
this.synchronize = true,
});