signIn abstract method
Sends a magic link to email. The server delivers the link (email/SMS);
the user opens it and the app handles the resulting deep link, then calls
verify with the token query parameter.
Implementation
@POST('/sign-in/magic-link')
Future<Result<StatusResponse>> signIn({
@BodyExtra('email') required String email,
@BodyExtra('name') String? name,
@BodyExtra('callbackURL') String? callbackURL,
@BodyExtra('newUserCallbackURL') String? newUserCallbackURL,
@BodyExtra('errorCallbackURL') String? errorCallbackURL,
});