SchemaSnapshot constructor
SchemaSnapshot(
- List<
TableSchema> tables
Validates physical metadata without opening a database connection.
Implementation
SchemaSnapshot(List<TableSchema> tables)
: tables = List.unmodifiable(tables) {
validateSchema(tables);
}