removeMobileUserId method

Future<void> removeMobileUserId()

Removes the mobile user id, if present.

Implementation

Future<void> removeMobileUserId() async {
  SharedPreferences prefs = await SharedPreferences.getInstance();
  await prefs.remove(_mobileUserIdKey);
}