Kotlin: Sign in a user through OTP

Sends a OTP to the user's email or phone number.

Examples

Sign in with email

supabase.gotrue.sendOtpTo(Email) {
    email = "example@email.com"
}

Sign in with SMS OTP

supabase.gotrue.sendOtpTo(Phone) {
    phoneNumber = "+4912345679"
}