Store constructor

Store({
  1. required String name,
  2. required String path,
  3. bool encrypted = false,
  4. bool isWeb = false,
})

Implementation

Store({required String name, required String path, bool encrypted = false, bool isWeb = false})
  : _name = name,
    _storage = StoreFileStorage(path: path, encrypted: encrypted);