IDE and the error message are clearly telling you, there is no such property toastCtrl on you product details class.
add the following lines to product details class.
import { ToastController } from 'ionic-angular';
constructor(private toastCtrl: ToastController) {
}