modelPath method
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);
}