clear static method

Future<bool> clear()

Implementation

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