SchemaSnapshot constructor

const SchemaSnapshot({
  1. required String dialect,
  2. required Map<String, TableSnapshot> tables,
  3. Map<String, IndexSnapshot> indexes = const {},
})

Creates a snapshot of a complete schema.

Implementation

const SchemaSnapshot({
  required this.dialect,
  required this.tables,
  this.indexes = const {},
});