Day constructor

Day(
  1. DateTime reference,
  2. String schedule,
  3. String workday,
  4. List<ClockTime> clockTimes,
  5. List<HourSummary> hourSummaries,
  6. int workLeaves,
  7. String state,
)

Implementation

Day(
  this.reference,
  this.schedule,
  this.workday,
  this.clockTimes,
  this.hourSummaries,
  this.workLeaves,
  this.state,
);