QueryReasoningEngineResponse.fromJson constructor

QueryReasoningEngineResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory QueryReasoningEngineResponse.fromJson(Map<String, dynamic> json) {
  return QueryReasoningEngineResponse(
    output: decodeCustom(json['output'], protobuf.Value.fromJson),
  );
}