Below is the object I have in my constructor.
I am passing a value from a previous component to the one below. I receive the item json object, but I need to use it when I click.
constructor(public navCtrl: NavController, public navParams: NavParams) {
this.item= navParams.get('item');
}
How can I use the item json object when I click a button?