Search code examples
ionic4

Can't resolve all parameters Ioni


When I add ionic storage in my constructor it gives error 'Can't resolve all parameters for ProductPage: ([object Object], ?).' in app module, I added IonicStorageModule. This is my constructor. This code is page.

constructor(public service: ApiService, private storage: Storage) {
        this.productData = [];
    } 

If I remove storage in the constructor app is working.


Solution

  • When i close and reopen the IDE it's worked.