helpers/backpack library

Classes

Backpack
Backpack class for storing data This class is not designed to store huge amounts of data.

Functions

backpackDelete(String key) → void
Delete a value using a key.
backpackDeleteAll() → void
Delete all values from Backpack.
backpackNylo({String key = 'nylo'}) Nylo
Returns an instance of Nylo.
backpackRead<T>(String key, {dynamic defaultValue}) → T?
Read data from the Backpack with a key.
backpackSave(String key, dynamic value) → void
Save a value using a key and value.