LocalStorageManager constructor

LocalStorageManager({
  1. String? storagePath,
})

Creates a new LocalStorageManager instance.

If storagePath is provided, it overrides the default location.

Implementation

LocalStorageManager({String? storagePath})
  : path = storagePath ?? _resolveDefaultStoragePath(_defaultDirectoryName);