RemoveAll function

Future<void> RemoveAll()

Implementation

Future<void> RemoveAll() async {
  for (String key in prefs!.getKeys()) {
    await prefs!.remove(key);
  }
}