FlowItem constructor
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,
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;