removeValue method
Removes the value from SharedPreferences and clears the cached value.
Implementation
@override
/// Removes the value from SharedPreferences and clears the cached value.
Future<void> removeValue(SharedPreferencesAsync prefs) async {
await super.removeValue(prefs);
_cachedValue = null;
}