Future<void> updateDocument(String collectionPath, String docId, Map<String, dynamic> data) async { await _db.collection(collectionPath).doc(docId).update(data); }