At the moment, I am transferring a data object from one page to another (within a Modal).
I need to pass 8 parameters to the modal view.
this.firstParam = navParams.get("firstPassed");
this.secondParam = navParams.get("secondPassed");
.
.
.
this.eightParam = navParams.get("eightPassed");
Is there a way to retrieve the entire object data with just one call?
this.data = navParams.getAll(); //something along these lines
I have looked through the documentation but couldn't find a method for fetching the complete object data.