HealthIncident constructor

HealthIncident({
  1. String? startDate,
  2. String? endDate,
  3. String? title,
  4. List<IncidentUpdate>? incidentUpdates,
})

Implementation

HealthIncident({
  this.startDate,
  this.endDate,
  this.title,
  this.incidentUpdates,
});