ScheduleInformation constructor

ScheduleInformation({
  1. String? scheduleId,
  2. String? availabilityView,
  3. List<ScheduleItem>? scheduleItems,
  4. WorkingHours? workingHours,
})

Creates a new instance of ScheduleInformation.

All parameters are optional.

Implementation

ScheduleInformation({
  this.scheduleId,
  this.availabilityView,
  this.scheduleItems,
  this.workingHours,
});