Returns the userId from the cache.
userId
Future<String?> getUserId() async { final sharedPreferences = await SharedPreferences.getInstance(); return sharedPreferences.getString(_AppFitCacheKey.userId.name); }