Department constructor

Department({
  1. int? id,
  2. String? departmentName,
  3. String? description,
})

Implementation

Department({this.id, this.departmentName, this.description});