getStringListData static method

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

Implementation

static Future<List<String>?> getStringListData(String key) async {
  SharedPreferences prefs = await SharedPreferences.getInstance();
  return prefs.getStringList(key);
}