Department constructor

const Department({
  1. int? id,
  2. String? name,
  3. DateTime? createdDate,
})

Implementation

const factory Department({int? id, String? name, DateTime? createdDate}) =
    _Department;