getStringList static method

List<String>? getStringList(
  1. String key
)

Implementation

static List<String>? getStringList(String key) {
  checkInit();
  if (_justCache)
    return cache['$prefix$key'];
  else
    return sharedPreferences!.getStringList('$prefix$key');
}