getStringList static method
Implementation
static List<String>? getStringList(String key, {List<String>? defaultValue = const []}) {
final cached = _cache[key];
if (cached is List<String>) return cached;
final value = prefs!.getStringList(key) ?? defaultValue;
if (value != null) _cache[key] = value;
return value;
}