clearSharedPref function

Future<bool> clearSharedPref()

Implementation

Future<bool> clearSharedPref() async {
  SharedPreferences prefs = await SharedPreferences.getInstance();
  prefs.reload();

  return await prefs.clear();
}