getHandoffInfo abstract method
- @GET.new('/auth/handoff/{code}/info')
- @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,
});