setEmpty method

Future<bool> setEmpty()

Implementation

Future<bool> setEmpty() async {
  final SharedPreferences prefs = await _prefs;
  return prefs.clear();
}