IncidentUpdate constructor

IncidentUpdate({
  1. String? description,
  2. IncidentUpdateStatus? status,
  3. DateTime? updatedDate,
})

Implementation

IncidentUpdate({
  this.description,
  this.status,
  this.updatedDate,
});