getHandoffInfo abstract method

  1. @GET.new('/auth/handoff/{code}/info')
Future<HandoffInfoResponse> getHandoffInfo({
  1. @Path.new('code') required String code,
})

Get handoff info.

Retrieve device and location information about a pending handoff request. Non-destructive – the code remains valid after this call.

code - The code.

Implementation

@GET('/auth/handoff/{code}/info')
Future<HandoffInfoResponse> getHandoffInfo({
  @Path('code') required String code,
});