GoalModel constructor

GoalModel(
  1. String name,
  2. String employeeName,
  3. String goalName,
  4. String status,
  5. String startDate,
  6. double progress,
)

Implementation

GoalModel(
  this.name,
  this.employeeName,
  this.goalName,
  this.status,
  this.startDate,
  this.progress,
);