FlowItemDto constructor

FlowItemDto({
  1. String? id,
  2. String? title,
  3. String? comment,
  4. int? receptionDate,
  5. int? processingDate,
  6. String? processer,
  7. int? cancellationDate,
  8. String? canceller,
  9. String? cancellationReason,
  10. String? cancellationNote,
  11. String? status,
  12. bool? homeVisit,
  13. String? municipality,
  14. String? town,
  15. String? zipCode,
  16. String? street,
  17. String? building,
  18. String? buildingNumber,
  19. String? doorbellName,
  20. String? floor,
  21. String? letterBox,
  22. String? notesOps,
  23. String? notesContact,
  24. String? latitude,
  25. String? longitude,
  26. String? type,
  27. bool? emergency,
  28. String? phoneNumber,
  29. String? patientId,
  30. String? patientLastName,
  31. String? patientFirstName,
  32. String? description,
  33. String? interventionCode,
})

Returns a new FlowItemDto instance.

Implementation

FlowItemDto({
  this.id,
  this.title,
  this.comment,
  this.receptionDate,
  this.processingDate,
  this.processer,
  this.cancellationDate,
  this.canceller,
  this.cancellationReason,
  this.cancellationNote,
  this.status,
  this.homeVisit,
  this.municipality,
  this.town,
  this.zipCode,
  this.street,
  this.building,
  this.buildingNumber,
  this.doorbellName,
  this.floor,
  this.letterBox,
  this.notesOps,
  this.notesContact,
  this.latitude,
  this.longitude,
  this.type,
  this.emergency,
  this.phoneNumber,
  this.patientId,
  this.patientLastName,
  this.patientFirstName,
  this.description,
  this.interventionCode,
});