Future<void> delete(String collection, String id) async { String baseUrl = services.getBaseDatabaseUrl(); String url = '$baseUrl/$collection/$id'; await http.delete(url); }