getList method

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

Get the List

Implementation

List<String>? getList(String key) {
  return _prefs?.getStringList(key);
}