markHistoryAsFailed abstract method

  1. @POST.new('history/failed/{id}')
Future<void> markHistoryAsFailed(
  1. @Path.new('id') int id, {
  2. @CancelRequest.new() CancelToken? cancelToken,
})

Mark a history entry as failed.

Implementation

@POST('history/failed/{id}')
Future<void> markHistoryAsFailed(
  @Path('id') int id, {
  @CancelRequest() CancelToken? cancelToken,
});