StudyResponsible constructor

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

Implementation

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