Space constructor

Space({
  1. String? id,
  2. String? key,
  3. String? name,
  4. String? type,
  5. String? status,
  6. String? authorId,
  7. DateTime? createdAt,
  8. String? homepageId,
  9. SpaceDescription? description,
  10. SpaceIcon? icon,
})

Implementation

Space(
    {this.id,
    this.key,
    this.name,
    this.type,
    this.status,
    this.authorId,
    this.createdAt,
    this.homepageId,
    this.description,
    this.icon});