getBrowserId function
Retrieves the stored browserId from SharedPreferences.
Implementation
Future<String?> getBrowserId() async {
SharedPreferences sp = await SharedPreferences.getInstance();
String? data = sp.getString(SharedPrefrenceStorage.browserId); // Get stored token.
return data;
}