EmergencyContact constructor

EmergencyContact({
  1. required String emailAddress,
  2. String? contactNotes,
  3. String? phoneNumber,
})

Implementation

EmergencyContact({
  required this.emailAddress,
  this.contactNotes,
  this.phoneNumber,
});