ToolCallContentContent.fromMap constructor
Implementation
factory ToolCallContentContent.fromMap(Map<Object?, Object?> value) {
final decoded = ToolCallContent.fromMap(value);
if (decoded is! ToolCallContentContent) {
throw const AcpWireDecodeException('Expected ToolCallContentContent.');
}
return decoded;
}