Future<T> delete(Uri path) async { final response = await http.delete( path, headers: await this.getHeaders(), ); return handleResponse(response); }