ShiftRequestModel constructor

ShiftRequestModel(
  1. String name,
  2. String employeeName,
  3. String shiftType,
  4. String status,
  5. String approver,
  6. String fromDate,
  7. String toDate,
)

Implementation

ShiftRequestModel(
  this.name,
  this.employeeName,
  this.shiftType,
  this.status,
  this.approver,
  this.fromDate,
  this.toDate,
);