deleteOperation method
Provides the Operations service functionality in this service.
Throws a http.ClientException if there were problems communicating with
the API service. Throws a ServiceException if the API method failed for
any reason.
Implementation
Future<void> deleteOperation(DeleteOperationRequest request) async {
final url = Uri.https(_host, '/ui/${request.name}');
await _client.delete(url);
}