reset method
Sign this provider out and erase its data with this function
Implementation
Future<void> reset() async {
_disposed = true;
_is2FactorAuthenticated = false;
await EncryptedStorage().reset();
await GoogleSignIn().signOut();
await FirebaseAuth.instance.signOut();
_disposed = false;
logger.i("[AuthProvider] Should be signed out!");
}