Why it says "lateinit property resendToken has not been initialized" for jetpack compose project?
I have phone authentication project in android jetpack compose, so I can do it in my code and I am success to get OTP code from firebase, but I want to use resend code again in my project, so when I click this line of code;
.clickable { modelAuthentication.resendCode(phoneNumberOTP)}
it is throw an error like "lateinit property resendToken has not been initialized", I am not get it what I missed, any idea?
PhoneVerify.kt
@Composable
fun PhoneVerifyScreen(
navController:...