Project constructor

Project({
  1. String? createTime,
  2. Map<String, String>? labels,
  3. String? lifecycleState,
  4. String? name,
  5. ResourceId? parent,
  6. String? projectId,
  7. String? projectNumber,
  8. Map<String, String>? tags,
})

Implementation

Project({
  this.createTime,
  this.labels,
  this.lifecycleState,
  this.name,
  this.parent,
  this.projectId,
  this.projectNumber,
  this.tags,
});