start abstract method

Future<String> start({
  1. required String emailOrTenantId,
  2. String? redirectUrl,
  3. SignInOptions? options,
})

Starts an SSO redirect chain to authenticate a user.

This function returns a URL to redirect to in order to authenticate the user according to the provided emailOrTenantId.

It's recommended to use flutter_web_auth to perform the authentication.

Important: Make sure a SSO is set up correctly and a redirect URL is configured in the Descope console, or provided by this call via redirectUrl.

Implementation

Future<String> start({required String emailOrTenantId, String? redirectUrl, SignInOptions? options});