DataCatalog constructor

DataCatalog({
  1. required String name,
  2. required DataCatalogType type,
  3. String? description,
  4. Map<String, String>? parameters,
})

Implementation

DataCatalog({
  required this.name,
  required this.type,
  this.description,
  this.parameters,
});