Returns a Int if exists in SharedPref
int getIntAsync(String key, {int defaultValue = 0}) { return sharedPreferences.getInt(key) ?? defaultValue; }