ShiftAttendanceModel constructor

ShiftAttendanceModel(
  1. String name,
  2. String employee,
  3. String employeeName,
  4. String shift,
  5. String attendanceDate,
  6. String status,
  7. String shiftStart,
  8. String shiftEnd,
  9. String inTime,
  10. String outTime,
  11. double workingHours,
  12. double lateEntryHrs,
  13. double earlyExitHrs,
  14. String department,
  15. String company,
  16. String shiftActualStart,
  17. String shiftActualEnd,
)

Implementation

ShiftAttendanceModel(
  this.name,
  this.employee,
  this.employeeName,
  this.shift,
  this.attendanceDate,
  this.status,
  this.shiftStart,
  this.shiftEnd,
  this.inTime,
  this.outTime,
  this.workingHours,
  this.lateEntryHrs,
  this.earlyExitHrs,
  this.department,
  this.company,
  this.shiftActualStart,
  this.shiftActualEnd,
);