Dataset constructor

Dataset({
  1. String? createTime,
  2. String? deleteTime,
  3. String? description,
  4. String? displayName,
  5. String? name,
  6. String? purgeTime,
})

Implementation

Dataset({
  this.createTime,
  this.deleteTime,
  this.description,
  this.displayName,
  this.name,
  this.purgeTime,
});