removeBrowserId function
Removes the stored browserId from SharedPreferences.
Implementation
Future<void> removeBrowserId(String id) async {
SharedPreferences sp = await SharedPreferences.getInstance();
sp.remove(SharedPrefrenceStorage.browserId); // Save the token.
}