AttendanceRequestModel constructor

AttendanceRequestModel(
  1. String name,
  2. String employeeName,
  3. String fromDate,
  4. String toDate,
  5. String reason,
)

Implementation

AttendanceRequestModel(
  this.name,
  this.employeeName,
  this.fromDate,
  this.toDate,
  this.reason,
);