getStringList static method

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

Gets a string list from storage.

Implementation

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