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