getStringList static method

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

Retrieves a stored list of strings.

Implementation

static Future<List<String>?> getStringList(String key) async {
  return _sharedPreferences.getStringList(key);
}