CallToolResult constructor

const CallToolResult({
  1. required List<Content> content,
  2. Map<String, dynamic>? structuredContent,
  3. bool isStreaming = false,
  4. bool? isError,
})

Implementation

const CallToolResult({
  required this.content,
  this.structuredContent,
  this.isStreaming = false,
  this.isError,
});