Message constructor

Message({
  1. String? createTime,
  2. String? data,
  3. Map<String, String>? labels,
  4. String? messageType,
  5. String? name,
  6. ParsedData? parsedData,
  7. List<PatientId>? patientIds,
  8. SchematizedData? schematizedData,
  9. String? sendFacility,
  10. String? sendTime,
})

Implementation

Message({
  this.createTime,
  this.data,
  this.labels,
  this.messageType,
  this.name,
  this.parsedData,
  this.patientIds,
  this.schematizedData,
  this.sendFacility,
  this.sendTime,
});