getHandoffStatus abstract method
- @GET.new('/auth/handoff/{code}/status')
- @Path.new('code') required String code,
Get handoff status.
Check the status of a handoff session. Returns whether the handoff has been completed or is still pending.
code - The code.
Implementation
@GET('/auth/handoff/{code}/status')
Future<HandoffStatusResponse> getHandoffStatus({
@Path('code') required String code,
});