TimesheetModel constructor

TimesheetModel(
  1. String name,
  2. String employee,
  3. String status,
  4. String start_date,
  5. String end_date,
  6. double total_hours,
)

Implementation

TimesheetModel(
  this.name,
  this.employee,
  this.status,
  this.start_date,
  this.end_date,
  this.total_hours,
);