markHistoryAsFailed abstract method
- @POST.new('history/failed/{id}')
- @Path.new('id') int id, {
- @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,
});