storageCollectionSave<T> function

Future storageCollectionSave<T>(
  1. String key,
  2. List collection
)

Save a collection to the storage class.

Implementation

Future storageCollectionSave<T>(String key, List collection) async {
  return await NyStorage.saveCollection<T>(key, collection);
}