bugDelete method
- dynamic userId
Deletes a bug document from Firestore by its userId
.
Implementation
Future<void> bugDelete(dynamic userId) async {
await bugcollection.doc(userId).delete();
}
Deletes a bug document from Firestore by its userId
.
Future<void> bugDelete(dynamic userId) async {
await bugcollection.doc(userId).delete();
}