signIn abstract method

  1. @POST.new("/sign-in/magic-link")
Future<Result<StatusResponse>> signIn({
  1. @Body.new() required MagicLinkBody body,
})

Sends a sign-in link to the given email. Delivery is handled by the server; the link's callback carries the token back to the app.

Implementation

@POST("/sign-in/magic-link")
Future<Result<StatusResponse>> signIn({@Body() required MagicLinkBody body});