Resource constructor

Resource({
  1. CatalogResource? catalog,
  2. DataLocationResource? dataLocation,
  3. DatabaseResource? database,
  4. TableResource? table,
  5. TableWithColumnsResource? tableWithColumns,
})

Implementation

Resource({
  this.catalog,
  this.dataLocation,
  this.database,
  this.table,
  this.tableWithColumns,
});