get dynamic.
static dynamic getDynamic(String key, {Object? defValue}) { if (_prefs == null) return defValue; return _prefs?.get(key) ?? defValue; }