clearStorageData method

dynamic clearStorageData()

清除目前已落地的資料

Implementation

clearStorageData() async{
  SharedPreferences prefs = await instance.prefs;
  prefs.remove("device_id");
  prefs.remove("domain_key");
  prefs.remove("token");
  prefs.remove("stamp");
  prefs.remove("device_uuid");
  getStorageData();
}