TaskUpdateToolInput constructor

const TaskUpdateToolInput({
  1. required String taskId,
  2. String? subject,
  3. String? description,
  4. String? activeForm,
  5. String? status,
  6. List<String>? addBlocks,
  7. List<String>? addBlockedBy,
  8. String? owner,
  9. Map<String, dynamic>? metadata,
})

Implementation

const TaskUpdateToolInput({
  required this.taskId,
  this.subject,
  this.description,
  this.activeForm,
  this.status,
  this.addBlocks,
  this.addBlockedBy,
  this.owner,
  this.metadata,
});