removeDocument method
- String documentId
Deletes a document by its ID
Implementation
Future<void> removeDocument(String documentId) async {
await _db.deleteDocument(
databaseId: databaseId,
collectionId: collectionId,
documentId: documentId,
);
}