remove method

Future<bool> remove(
  1. String key, {
  2. bool notify = true,
})

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;
}