storageCollectionDeleteIndex<T> function

Future storageCollectionDeleteIndex<T>(
  1. String key,
  2. int index
)

Delete an item from a collection in the storage class.

Implementation

Future storageCollectionDeleteIndex<T>(String key, int index) async {
  return await NyStorage.deleteFromCollection<T>(index, key: key);
}