I am able to successfully open the modal, however, I am unsure if there is a simple way to close it. I looked for a dismiss method on ModalController but encountered errors in the log. The Ionic documentation has not been very helpful in this regard. Can anyone provide guidance on where else I can find information on closing modals?
import { ModalController, ViewController } from 'ionic-angular';
constructor(public modalCtrl: ModalController) {
}
CloseModal() {
this.modalCtrl.dismiss();
}