I need programmatically set server clientId instead of GoogleSignIn plugin read directly from default_web_client_id when request to GoogleSignIn.
Example code with native:
gso = GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN)
.requestIdToken(appToken)
.requestServerAuthCode(appToken)
Any suggestion to implement this with Flutter?
Thanks,