TimeTableItem constructor
TimeTableItem({})
Implementation
TimeTableItem({
int? notBeforeInMinutes,
int? notAfterInMinutes,
int? rruleStartDate,
String? rrule,
String? zoneId,
List<String>? days,
List<String>? recurrenceTypes,
List<TimeTableHour>? hours,
String? calendarItemTypeId,
bool? homeVisit,
String? placeId,
bool? publicTimeTableItem,
bool? acceptsNewPatient,
bool? unavailable
}) : rruleStartDate = rruleStartDate ?? null,
rrule = rrule ?? null,
zoneId = zoneId ?? null,
days = days ?? [],
recurrenceTypes = recurrenceTypes ?? [],
hours = hours ?? [],
calendarItemTypeId = calendarItemTypeId ?? null,
homeVisit = homeVisit ?? false,
placeId = placeId ?? null,
publicTimeTableItem = publicTimeTableItem ?? false,
acceptsNewPatient = acceptsNewPatient ?? true,
unavailable = unavailable ?? false,
_notBeforeInMinutes = notBeforeInMinutes ?? null,
_notAfterInMinutes = notAfterInMinutes ?? null;