I need on click delete image from firebase storage and firestore I've written this code that does the delete from firestore only.
onLongPress: ()async{
await FirebaseFirestore.instance.runTransaction((Transaction myTransaction) async {
await myTransaction.delete(snapshot.data!.docs[index].reference);
});
},
screen from code