getStringList static method

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

Gets a list of strings from SharedPreferences.

Implementation

static List<String>? getStringList(String key) {
  return prefs!.getStringList(key);
}