deleteDocument method
Deletes a document from the specified collection
Implementation
@override
Future<void> deleteDocument(String collection, String id) async {
final documents = _documents;
final name = _documentPath(collection, id);
await documents.delete(name);
}