Person constructor

Person(
  1. String name,
  2. Ids ids,
  3. String? biography,
  4. String? birthday,
  5. String? death,
  6. String? birthplace,
  7. String? homepage,
  8. SocialIds? socialIds,
)

Implementation

Person(this.name, this.ids, this.biography, this.birthday, this.death,
    this.birthplace, this.homepage, this.socialIds);