ProjectDetails constructor

ProjectDetails({
  1. AvatarUrlsBean? avatarUrls,
  2. String? id,
  3. String? key,
  4. String? name,
  5. UpdatedProjectCategory? projectCategory,
  6. ProjectDetailsProjectTypeKey? projectTypeKey,
  7. String? self,
  8. bool? simplified,
})

Implementation

ProjectDetails(
    {this.avatarUrls,
    this.id,
    this.key,
    this.name,
    this.projectCategory,
    this.projectTypeKey,
    this.self,
    bool? simplified})
    : simplified = simplified ?? false;