postCreateFeeds method

Future<void> postCreateFeeds({
  1. FeedClientLiteDTO? feedClientLiteDTO,
})

Parameters:

Implementation

Future<void> postCreateFeeds({ FeedClientLiteDTO? feedClientLiteDTO, }) async {
  final response = await postCreateFeedsWithHttpInfo( feedClientLiteDTO: feedClientLiteDTO, );
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
}