setBrowserId function
Stores the given browserId data in SharedPreferences.
Implementation
Future<void> setBrowserId(String id) async {
SharedPreferences sp = await SharedPreferences.getInstance();
sp.setString(SharedPrefrenceStorage.browserId, id); // Save the token.
}