SchemaSnapshot constructor
const
SchemaSnapshot({
- required String dialect,
- required Map<
String, TableSnapshot> tables, - Map<
String, IndexSnapshot> indexes = const {},
Creates a snapshot of a complete schema.
Implementation
const SchemaSnapshot({
required this.dialect,
required this.tables,
this.indexes = const {},
});