FlowItem constructor

FlowItem({
  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,
})

Implementation

FlowItem({
		String? id,
		String? title,
		String? comment,
		int? receptionDate,
		int? processingDate,
		String? processer,
		int? cancellationDate,
		String? canceller,
		String? cancellationReason,
		String? cancellationNote,
		String? status,
		bool? homeVisit,
		String? municipality,
		String? town,
		String? zipCode,
		String? street,
		String? building,
		String? buildingNumber,
		String? doorbellName,
		String? floor,
		String? letterBox,
		String? notesOps,
		String? notesContact,
		String? latitude,
		String? longitude,
		String? type,
		bool? emergency,
		String? phoneNumber,
		String? patientId,
		String? patientLastName,
		String? patientFirstName,
		String? description,
		String? interventionCode
	}) : id = id ?? null,
	title = title ?? null,
	comment = comment ?? null,
	receptionDate = receptionDate ?? null,
	processingDate = processingDate ?? null,
	processer = processer ?? null,
	cancellationDate = cancellationDate ?? null,
	canceller = canceller ?? null,
	cancellationReason = cancellationReason ?? null,
	cancellationNote = cancellationNote ?? null,
	status = status ?? null,
	homeVisit = homeVisit ?? null,
	municipality = municipality ?? null,
	town = town ?? null,
	zipCode = zipCode ?? null,
	street = street ?? null,
	building = building ?? null,
	buildingNumber = buildingNumber ?? null,
	doorbellName = doorbellName ?? null,
	floor = floor ?? null,
	letterBox = letterBox ?? null,
	notesOps = notesOps ?? null,
	notesContact = notesContact ?? null,
	latitude = latitude ?? null,
	longitude = longitude ?? null,
	type = type ?? null,
	emergency = emergency ?? null,
	phoneNumber = phoneNumber ?? null,
	patientId = patientId ?? null,
	patientLastName = patientLastName ?? null,
	patientFirstName = patientFirstName ?? null,
	description = description ?? null,
	interventionCode = interventionCode ?? null;