deleteFeedsWithHttpInfo method

Future<Response> deleteFeedsWithHttpInfo(
  1. int id
)

Performs an HTTP 'DELETE /client/feeds/{id}' operation and returns the Response. Parameters:

  • int id (required):

Implementation

Future<Response> deleteFeedsWithHttpInfo(int id,) async {
  // ignore: prefer_const_declarations
  final path = r'/client/feeds/{id}'
    .replaceAll('{id}', id.toString());

  // ignore: prefer_final_locals
  Object? postBody;

  final queryParams = <QueryParam>[];
  final headerParams = <String, String>{};
  final formParams = <String, String>{};

  const contentTypes = <String>[];


  return apiClient.invokeAPI(
    path,
    'DELETE',
    queryParams,
    postBody,
    headerParams,
    formParams,
    contentTypes.isEmpty ? null : contentTypes.first,
  );
}