Open mynaner opened 2 years ago
static List<String>? getStringList(String key, {List<String>? defValue = const []}) { return _prefs?.getStringList(key) ?? defValue; }
在给了一个 默认值 const [] ,的情况下 ,返回不应该 为 (List? )值 而是 List
支持能默认返回null的情况
在给了一个 默认值 const [] ,的情况下 ,返回不应该 为 (List? )值 而是 List