resetAll method

  1. @deprecated
Future<bool> resetAll()

reset every settings throughout the whole app.

! ** Warning ** if you're using SharedPreferences in other parts of your app, avoid using this function.

Implementation

@deprecated
Future<bool> resetAll() async {
  return _sharedPrefs!.clear();
}