remove method
Remove the value associated with the specified key from SharedPreferences.
Implementation
Future<bool> remove(String key, {bool notify = true}) async {
assert(_key != null);
_decorator.remove(key, notify: notify);
return true;
}