FunctionCall.fromJson constructor
Implementation
factory FunctionCall.fromJson(Map<String, dynamic> json) {
return FunctionCall(
id: json['id'] ?? '',
name: json['name'] ?? '',
args: decodeCustom(json['args'], protobuf.Struct.fromJson),
);
}