QueryReasoningEngineResponse.fromJson constructor
QueryReasoningEngineResponse.fromJson(
- Object? j
Implementation
factory QueryReasoningEngineResponse.fromJson(Object? j) {
final json = j as Map<String, Object?>;
return QueryReasoningEngineResponse(
output: switch (json['output']) {
null => null,
Object $1 => protobuf.Value.fromJson($1),
},
);
}