StorageConfig constructor
Creates a new StorageConfig with default paths and limits.
Implementation
const StorageConfig({
this.baseDir = '.ipfs',
this.maxStorageSize = 10 * 1024 * 1024 * 1024, // 10GB default
this.blocksDir = 'blocks',
this.datastoreDir = 'datastore',
this.keysDir = 'keys',
this.enableGC = true,
this.gcInterval = const Duration(hours: 1),
this.maxBlockSize = 1024 * 1024 * 2, // 2MB default
});