ToolChatMessage constructor

const ToolChatMessage({
  1. required String toolCallId,
  2. required String content,
})

Type of message that is the response of calling a tool.

Implementation

const ToolChatMessage({
  required this.toolCallId,
  required this.content,
});