GetInferenceResponse constructor
- FlatTensors? outputTensors,
- Annotations? annotations,
Implementation
factory GetInferenceResponse({
$6.FlatTensors? outputTensors,
$3.Annotations? annotations,
}) {
final $result = create();
if (outputTensors != null) {
$result.outputTensors = outputTensors;
}
if (annotations != null) {
$result.annotations = annotations;
}
return $result;
}