getSharedPrefsStringList static method

Future<List<String>> getSharedPrefsStringList(
  1. String key
)

Implementation

static Future<List<String>> getSharedPrefsStringList(String key) async {
  return isWeb || isWindows
      ? await _all(key)
      : SharedPreferencesUtil.instance.getStringList(key);
}