ProjectDetails constructor

ProjectDetails({
  1. String? consoleUrl,
  2. DateTime? createdDate,
  3. DateTime? lastUpdatedDate,
  4. String? name,
  5. String? projectId,
  6. String? region,
  7. List<Resource>? resources,
  8. ProjectState? state,
})

Implementation

ProjectDetails({
  this.consoleUrl,
  this.createdDate,
  this.lastUpdatedDate,
  this.name,
  this.projectId,
  this.region,
  this.resources,
  this.state,
});