getOutputName method

String getOutputName(
  1. int index
)

Returns the name of the output tensor at index.

Implementation

String getOutputName(int index) {
  return tfliteBinding.TfLiteSignatureRunnerGetOutputName(
    _runner,
    index,
  ).cast<Utf8>().toDartString();
}