int quickGetInt(String key, {int defValue = 0}){ int value = _pref!.getInt(key) ?? defValue; return value; }