deleteNode abstract method

  1. @DELETE('/api/application/nodes/{id}')
Future<void> deleteNode({
  1. @CancelRequest() CancelToken? cancelToken,
  2. @SendProgress() @experimental ProgressCallback? onSendProgress,
  3. @ReceiveProgress() @experimental ProgressCallback? onReceiveProgress,
  4. @Path('id') required int id,
})

Implementation

@DELETE('/api/application/nodes/{id}')
Future<void> deleteNode({
  @CancelRequest() CancelToken? cancelToken,
  @SendProgress() @experimental ProgressCallback? onSendProgress,
  @ReceiveProgress() @experimental ProgressCallback? onReceiveProgress,
  //
  @Path('id') required int id,
});