McpServerToolCallContent constructor

McpServerToolCallContent({
  1. required String callId,
  2. required String toolName,
  3. String? serverName,
  4. Map<String, Object?>? arguments,
  5. Object? rawRepresentation,
  6. AdditionalPropertiesDictionary? additionalProperties,
})

Creates a new McpServerToolCallContent.

Implementation

McpServerToolCallContent({
  required this.callId,
  required this.toolName,
  this.serverName,
  this.arguments,
  super.rawRepresentation,
  super.additionalProperties,
});