BidiGenerateContentToolCall.fromJson constructor
Implementation
factory BidiGenerateContentToolCall.fromJson(Map<String, dynamic> json) {
return BidiGenerateContentToolCall(
functionCalls:
decodeListMessage(json['functionCalls'], FunctionCall.fromJson) ?? [],
);
}