storage_repository 1.1.13 copy "storage_repository: ^1.1.13" to clipboard
storage_repository: ^1.1.13 copied to clipboard

Abstraction for reading and persisting data to platform specific storage.

Storage repository #

Abstraction for persisting and reading data to platform specific storage. You can also find this package on pub as storage_repository

Usage #

Future main() async {
    WidgetsFlutterBinding.ensureInitialized();
    //This must be called once per application lifetime
    await StorageRepository.initFlutter();

    //Instantiate a basic storage repository
    IStorageRepository storageRepository = StorageRepository();
    //or use a secure version of storage repository
    //final storageRepository = SecureStorageRepositoryImpl();
    //init must be called, preferably right after the instantiation
    await storageRepository.init();

    await storageRepository.set('some_string_key', 'Some string');
    await storageRepository.set('some_int_key', 0);
    //dynamic keys are also possible
    await storageRepository.set(1, 1);

    //result: Some string (dynamic)
    print(await storageRepository.get('some_string_key'));

    //result: 0 (dynamic)
    print(await storageRepository.get('some_int_key'));

    //result: 1 (dynamic)
    print(await storageRepository.get(1));

    //result: 1 (int?)
    print(await storageRepository.get(1));

    await storageRepository.delete('some_string_key');

    await storageRepository.log();

    await storageRepository.clear();
}

6
likes
140
pub points
73%
popularity

Publisher

unverified uploader

Abstraction for reading and persisting data to platform specific storage.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, flutter_secure_storage, hive, hive_flutter

More

Packages that depend on storage_repository