StreamBuilder<User?>(
stream: myAppKey.currentState!
.getFirebaseAuth()
.authStateChanges()
My application is idle, but every two minutes, the StreamBuilder refreshes unexpectedly, causing an issue.
I tried using .distinct(), but it didn't solve the problem.
How can I prevent this from happening?