ToolCall.fromJson constructor
Implementation
factory ToolCall.fromJson(Map<String, dynamic> json) => ToolCall(
id: json['id'] as String,
callType: json['type'] as String,
function:
FunctionCall.fromJson(json['function'] as Map<String, dynamic>),
);