Breaking changes:
- As in the null-safe version of shared_preferences, setters no longer accept
null
to mean removing values. If you were previously usingset*(key, null)
for removing, useremove(key)
instead.
- #7: Loosen constraints on
shared_preferences
dependency - #10: Add
WidgetsFlutterBinding.ensureInitialize()
to README and example project
- #1: Fix a bug where reusing a
Preference
between multiple listeners only propagated the change to the first one
- Initial stable release.