delete method
Deletes a document
Implementation
Future<void> delete(String collection, String id) async {
final response = await _client.delete(
Uri.parse('$baseUrl/collections/$collection/documents/$id'),
headers: _headers,
);
_handleResponse(response);
}