getInputName method

String getInputName(
  1. int index
)

Returns the name of the input tensor at index.

Implementation

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