completeHandoff abstract method

  1. @POST.new('/auth/handoff/complete')
Future<void> completeHandoff({
  1. @Body.new() required HandoffCompleteRequest body,
})

Complete handoff.

Complete the handoff process and authenticate on the target device using the handoff code.

body - Name not received - field will be skipped.

Implementation

@POST('/auth/handoff/complete')
Future<void> completeHandoff({@Body() required HandoffCompleteRequest body});