modelPath method

Future<String> modelPath(
  1. String modelName
)

Get the storage path of the loaded model.

Implementation

Future<String> modelPath(final String modelName) async {
  final decompressionPath = modelStorage ?? await _defaultDecompressionPath();
  return path.join(decompressionPath, modelName);
}