getValue method

  1. @override
List<String>? getValue(
  1. SharedPreferences preferences,
  2. String key
)
override

Retrieve a value associated with the key by using the preferences.

Implementation

@override
List<String>? getValue(preferences, key) => preferences.getStringList(key);