How to update Firebase token in Flutter application after it expires and store it?
问题 I have created authentication with google on first time start up of app and I have my own _authenticatedUser which stores user token for further requests. final FirebaseAuth firebaseAuth = FirebaseAuth.instance; final GoogleSignIn googleSignIn = GoogleSignIn(); Future<String> signInGoogle() async { GoogleSignInAccount googleSignInAccount = await googleSignIn.signIn(); GoogleSignInAuthentication gsa = await googleSignInAccount.authentication; FirebaseUser user = await firebaseAuth