getBrowserId function

Future<String?> getBrowserId()

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;
}