SignInIdentifierBuilder
class SignInIdentifierBuilder
Builder for sign-in with identifier.
Use this builder to specify the identifier for starting a sign-in flow. Only one of email, phone, or username should be set.
Example usage:
clerk.auth.signIn { email = "user@email.com" }
// or
clerk.auth.signIn { phone = "+1234567890" }
// or
clerk.auth.signIn { username = "johndoe" }Content copied to clipboard