storageCollectionDeleteIndex<T> function

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

Delete an item from a collection in the storage class.

Implementation

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