Department constructor

const Department({
  1. required int id,
  2. DateTime? fetchedAt,
  3. required String code,
  4. required String nameZh,
})

Implementation

const Department({
  required this.id,
  this.fetchedAt,
  required this.code,
  required this.nameZh,
});