observeSet method
Observe changes to the values associated with the specified set of keys in SharedPreferences.
Implementation
Stream<String> observeSet({required Set<String> keys}) {
assert(_key != null);
return _decorator.listenSet(keys: keys);
}