Catalog constructor

Catalog({
  1. String? createTime,
  2. String? deleteTime,
  3. String? expireTime,
  4. String? name,
  5. String? updateTime,
})

Implementation

Catalog({
  this.createTime,
  this.deleteTime,
  this.expireTime,
  this.name,
  this.updateTime,
});