ToolChatMessage constructor

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

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

Implementation

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