getStringList static method
get string list.
Implementation
static List<String> getStringList(String key,
{List<String> defValue: const []}) {
if (_prefs == null) return defValue;
return _prefs?.getStringList(key) ?? defValue;
}
get string list.
static List<String> getStringList(String key,
{List<String> defValue: const []}) {
if (_prefs == null) return defValue;
return _prefs?.getStringList(key) ?? defValue;
}