storage_wrapper 2.0.0 copy "storage_wrapper: ^2.0.0" to clipboard
storage_wrapper: ^2.0.0 copied to clipboard

A wrapper for shared_preferences and flutter_secure_storage that provides an unified api and a convenient mocking interface.

Storage Wrapper #

A wrapper for shared_preferences and flutter_secure_storage that provides an unified api and a convenient mocking interface.

How it works #

Calling the StorageWrapper.common() constructor will return an instance that saves data in the SharedPreferences using the shared_preferences plugin.

Calling the StorageWrapper.secure() constructor will return an instance that saves data securely using the flutter_secure_storage plugin.

Once you got the instance, you can use the methods:

  • write
  • read
  • delete
  • containsKey
  • getAll
  • deleteAll

They all take the following parameters:

  • key: a String identifying the key of the value
  • iOptions: a IOSOptions object to specify iOS secure storage accessibility options
  • aOptions: a AndroidOptions object to specify Android secure storage accessibility options

While the AndroidOptions do not seem to be used by flutter_secure_storage, you can find more information about the IOSOptions here.

Note as for version 1.3.0 you can pass iOptions and aOptions to the StorageWrapper.secure() constructor to avoid passing the same options over and over again.
The options passed to the single methods will override the instance ones, though.

Mocking values for testing #

You can call the enableMock method passing an optional Map<String,String> for initial values. If nothing is passed, the storage will stay in mocking mode (the isMocking will be true) anyway but without any initial data, that will be defaulted to an empty Map<String,String>.

The mock data will not be persisted and each instance of StorageWrapper will not have the same mock data:

    final mockWrapper = StorageWrapper.secure();
    mockWrapper.enableMock();

    final mockWrapper2 = StorageWrapper.secure();
    mockWrapper2.enableMock({'foo':'bar'});

    final anotherWrapper = StorageWrapper.secure();

    //mockWrapper and mockWrapper2 will have different data sources
    //anotherWrapper will not be a mock

Subsequent calls to enableMock will not have any effect. You can always manipulate the data by accessing the mockEntries property.

More docs: #

The package wraps:

Web support #

The package works for Web too.

When using Flutter Web, CommonStorage is used for both common and secure modes. It's probably because pub.dev does not recognise compatibility with Web because flutter_secure_storage is not.

1
likes
120
pub points
66%
popularity

Publisher

verified publishermagicleon94.dev

A wrapper for shared_preferences and flutter_secure_storage that provides an unified api and a convenient mocking interface.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, flutter_secure_storage, shared_preferences

More

Packages that depend on storage_wrapper