TableSchema constructor

TableSchema({
  1. required List<ColumnSchema> columns,
  2. required String name,
  3. required String key,
  4. bool synchronize = true,
})

Implementation

TableSchema({
  required this.columns,
  required this.name,
  required this.key,
  this.synchronize = true,
});