get int.
static int getInt(String key, {int defValue: 0}) { if (_prefs == null) return defValue; return _prefs?.getInt(key) ?? defValue; }