setCache method
Implementation
void setCache(String path) {
final cPath = path.toNativeUtf8();
try {
C.mnn_runtime_manager_set_cache(ptr, cPath.cast());
} finally {
calloc.free(cPath);
}
}
void setCache(String path) {
final cPath = path.toNativeUtf8();
try {
C.mnn_runtime_manager_set_cache(ptr, cPath.cast());
} finally {
calloc.free(cPath);
}
}