ToolRespondedEvent constructor

ToolRespondedEvent({
  1. required String invocationId,
  2. required InvocationStatus status,
  3. dynamic output,
  4. String? errorText,
  5. RemoteObject? exception,
})

Implementation

ToolRespondedEvent({
  required this.invocationId,
  required this.status,
  this.output,
  this.errorText,
  this.exception,
});