getHandoffStatus abstract method

  1. @GET.new('/auth/handoff/{code}/status')
Future<HandoffStatusResponse> getHandoffStatus({
  1. @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,
});