DepartmentData constructor

const DepartmentData({
  1. required int id,
  2. required String code,
  3. required String name,
  4. required int companyId,
  5. int? managerId,
  6. String? imagePath,
  7. String? description,
})

Implementation

const DepartmentData({
  required this.id,
  required this.code,
  required this.name,
  required this.companyId,
  this.managerId,
  this.imagePath,
  this.description,
});