注销 ionic3 应用程序时删除所有 cordova-sqlite-storage 值?

Remove all cordova-sqlite-storage values when logging out the ionic3 app?

我目前正在开发 ionic 3 应用程序并使用 https://ionicframework.com/docs/building/storage 插件。现在我正在注销。我无法找到如何在注销应用程序时删除存储在数据库中的所有数据。

导入和注入存储后,我需要使用清除方法使用以下方法。

logOut() {
    this.storage.clear().then((data) => {
      console.log('In promise of clear the data ', data);
      this.navCtrl.push(SignInPage);

    });