CheckInModel constructor

CheckInModel(
  1. String name,
  2. String employeeName,
  3. String time,
  4. String deviceId,
  5. String logType,
  6. String shift,
  7. String attendance,
)

Implementation

CheckInModel(
  this.name,
  this.employeeName,
  this.time,
  this.deviceId,
  this.logType,
  this.shift,
  this.attendance,
);