ProjectModel constructor

ProjectModel(
  1. String name,
  2. String project_name,
  3. String status,
  4. String expected_start_date,
  5. String expected_end_date,
)

Implementation

ProjectModel(
  this.name,
  this.project_name,
  this.status,
  this.expected_start_date,
  this.expected_end_date,
);