TableSnapshot constructor

const TableSnapshot({
  1. required String name,
  2. required Map<String, ColumnSnapshot> columns,
  3. Map<String, String> checks = const {},
})

Creates a snapshot of a single table.

Implementation

const TableSnapshot({
  required this.name,
  required this.columns,
  this.checks = const {},
});