fetchStorePlugins method

Future<List<String>?> fetchStorePlugins()

Implementation

Future<List<String>?> fetchStorePlugins() async {
  final SharedPreferences prefs = await _sharedPref;
  return prefs.getStringList(_pluginStoreKey);
}