clearAll static method

Future<bool> clearAll()

Remove all the keys.

Implementation

static Future<bool> clearAll() async {
  final prefs = await SharedPreferences.getInstance();
  return prefs.clear();
}