ModelTableSnapshot constructor
ModelTableSnapshot({
- required String modelName,
- required String tableName,
- required String? schema,
- required List<
ModelColumnSnapshot> columns,
Implementation
ModelTableSnapshot({
required this.modelName,
required this.tableName,
required this.schema,
required this.columns,
});