Employee constructor

Employee(
  1. String id,
  2. String name,
  3. String enrollment,
  4. String pis,
  5. DateTime? admission,
  6. String department,
)

Implementation

Employee(
  this.id,
  this.name,
  this.enrollment,
  this.pis,
  this.admission,
  this.department,
);