removeBrowserId function

Future<void> removeBrowserId(
  1. String id
)

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