LeaveModel constructor

LeaveModel(
  1. String name,
  2. String employeeName,
  3. String leaveType,
  4. String status,
  5. String fromDate,
  6. String toDate,
  7. String leaveApprover,
)

Implementation

LeaveModel(
  this.name,
  this.employeeName,
  this.leaveType,
  this.status,
  this.fromDate,
  this.toDate,
  this.leaveApprover,
);