setValue method
Stores value
in SharedPreferences and updates the cached value.
Implementation
@override
/// Stores [value] in SharedPreferences and updates the cached value.
Future<void> setValue(SharedPreferencesAsync prefs, T value) async {
await super.setValue(prefs, value);
_cachedValue = value;
}