Modifies the user data.
updateUser()
method, the user needs to be signed in first.Whether to update the local session with the new user. Defaults to `true`.
The redirect url to use. If you don't specify this, the platform specific will be used, like deeplinks on android.
undefined
val user = supabase.auth.updateUser {
email = "newEmail@email.com"
}
val user = supabase.auth.updateUser {
password = "secretPassword"
}
val user = supabase.auth.updateUser {
data {
put("name", "John")
}
}