removeMobileUserId method
Removes the mobile user id, if present.
Implementation
Future<void> removeMobileUserId() async {
SharedPreferences prefs = await SharedPreferences.getInstance();
await prefs.remove(_mobileUserIdKey);
}
Removes the mobile user id, if present.
Future<void> removeMobileUserId() async {
SharedPreferences prefs = await SharedPreferences.getInstance();
await prefs.remove(_mobileUserIdKey);
}