clear method

Future<bool> clear({
  1. bool notify = true,
})

Clear all key-valure pairs from SharedPreferences.

Implementation

Future<bool> clear({bool notify = true}) async {
  assert(_key != null);
  return _decorator.clear(notify: notify);
}