PersonSchema constructor

const PersonSchema({
  1. required String name,
  2. String? url,
  3. String? image,
  4. String? email,
  5. String? telephone,
  6. String? jobTitle,
  7. String? description,
  8. String? worksFor,
  9. String? alumniOf,
  10. String? birthDate,
  11. String? nationality,
  12. List<String>? sameAs,
  13. List<String>? knowsAbout,
})

Implementation

const PersonSchema({
  required this.name,
  this.url,
  this.image,
  this.email,
  this.telephone,
  this.jobTitle,
  this.description,
  this.worksFor,
  this.alumniOf,
  this.birthDate,
  this.nationality,
  this.sameAs,
  this.knowsAbout,
});