stopTask method

dynamic stopTask(
  1. String taskId
)

Implementation

stopTask(String taskId) async {
  final classId =  _getClassId();
  return _taskRepository.stopTask(
    UpdateTaskParams(classId: classId, taskId: taskId),
  );
}