setStorageConfig static method
Set storage configuration
设置存储配置
config
存储路径配置
Implementation
static void setStorageConfig(StorageConfig config) {
_storageConfig = StorageConfig(
cachePath: _processPath(config.cachePath),
filesPath: _processPath(config.filesPath),
);
logi('Updated _storageConfig to: $_storageConfig');
}