TaskStatusDto constructor

TaskStatusDto({
  1. required String status,
  2. required String taskId,
  3. Map<String, dynamic>? description,
})

Implementation

TaskStatusDto({required this.status, required this.taskId, this.description});