Stop Google Play Games Popup if user denies

I have implemented google play games in my game and have made it so if you are not authenticated it asks you at every start of the game to sign in. Is there a way to check if the user has clicked cancel/deny, so I wouldn’t show the sign in popup.

Use this code to show the pop up for Google Play Games at start

if(!userCancelled){
Social.localUser.Authenticate((bool success)=>{
if(!success){
Debug.Log(“User has cancelled the authentication”);
//save userCancelled as true
}
});
}

Save the user cancelled state, and check before showing that if user has cancelled than don’t show the pop up.