AutoLogoutThreeTry function
dynamic
AutoLogoutThreeTry()
Implementation
AutoLogoutThreeTry() async {
LogoutCount--;
if (LogoutCount == 0) {
print('${LogoutCount}Count of 3');
SharedPreferences prefs = await SharedPreferences.getInstance();
prefs.clear();
Navigator.popAndPushNamed(commonContext, '/wellnesspage');
}
}