Department constructor

Department({
  1. int? id,
  2. String? departmentName,
  3. String? departmentCode,
  4. String? description,
  5. int? statusId,
  6. String? userAdd,
  7. String? userEdit,
  8. DateTime? dateAdd,
  9. DateTime? dateEdit,
  10. String? ip,
  11. int? organizationId,
})

Implementation

Department({
  this.id,
  this.departmentName,
  this.departmentCode,
  this.description,
  this.statusId,
  this.userAdd,
  this.userEdit,
  this.dateAdd,
  this.dateEdit,
  this.ip,
  this.organizationId,
});