cancelHandoff abstract method

  1. @DELETE.new('/auth/handoff/{code}')
Future<void> cancelHandoff({
  1. @Path.new('code') required String code,
})

Cancel handoff.

Cancel an ongoing handoff session. The handoff code will no longer be valid for authentication.

code - The code.

Implementation

@DELETE('/auth/handoff/{code}')
Future<void> cancelHandoff({@Path('code') required String code});