GetInferenceResponse constructor

GetInferenceResponse({
  1. FlatTensors? outputTensors,
  2. 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;
}