TaskType constructor

TaskType({
  1. required int taskTypeId,
  2. String? taskTypeName,
  3. String? taskTypeKh,
  4. String? description,
  5. bool? isActive,
  6. DateTime? dateAdd,
  7. DateTime? dateEdit,
  8. dynamic employeeAdd,
  9. dynamic employeeEdit,
  10. String? discriminator,
})

Implementation

TaskType({
  required this.taskTypeId,
   this.taskTypeName,
   this.taskTypeKh,
   this.description,
   this.isActive,
   this.dateAdd,
   this.dateEdit,
   this.employeeAdd,
   this.employeeEdit,
   this.discriminator,
});