storageCollectionDeleteIndex<T> function
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);
}