ModelTableSnapshot constructor

ModelTableSnapshot({
  1. required String modelName,
  2. required String tableName,
  3. required String? schema,
  4. required List<ModelColumnSnapshot> columns,
})

Implementation

ModelTableSnapshot({
  required this.modelName,
  required this.tableName,
  required this.schema,
  required this.columns,
});