StudyResponsible constructor

StudyResponsible({
  1. required String id,
  2. required String name,
  3. String? title,
  4. String? email,
  5. String? affiliation,
  6. String? address,
})

Implementation

StudyResponsible({
  required this.id,
  required this.name,
  this.title,
  this.email,
  this.affiliation,
  this.address,
});