Project constructor

Project({
  1. String? createTime,
  2. String? deleteTime,
  3. String? displayName,
  4. String? etag,
  5. Map<String, String>? labels,
  6. String? name,
  7. String? parent,
  8. String? projectId,
  9. String? state,
  10. Map<String, String>? tags,
  11. String? updateTime,
})

Implementation

Project({
  this.createTime,
  this.deleteTime,
  this.displayName,
  this.etag,
  this.labels,
  this.name,
  this.parent,
  this.projectId,
  this.state,
  this.tags,
  this.updateTime,
});