TaskUpdateToolOutput constructor

const TaskUpdateToolOutput({
  1. required bool success,
  2. required String taskId,
  3. required List<String> updatedFields,
  4. String? error,
  5. ({String from, String to})? statusChange,
  6. bool verificationNudgeNeeded = false,
})

Implementation

const TaskUpdateToolOutput({
  required this.success,
  required this.taskId,
  required this.updatedFields,
  this.error,
  this.statusChange,
  this.verificationNudgeNeeded = false,
});