I have a problem signing out the current user from my app
the method I am using is as follows:
.... onPressed:_signOut //jump to function void _s
Most demos I've looked at only logout of Firebase using a command like _auth.signOut();
_auth.signOut();
This doesn't appear to exist anymore (see Collin's reply above):
_googleSignIn.signOut()
So, I had to use this one method to signout/logout of Google.
_googleSignIn.disconnect();