//EMAIL ID
Future<void> StoreEmailIdToLocalStorage(String value) async { SharedPreferences prefs = await SharedPreferences.getInstance(); prefs.setString(emailIdKey,value); }