While exploring the Ionic framework, I came across the following code snippet:
import { AlertController } from 'ionic-angular';
export class MyPage {
constructor(public alertCtrl: AlertController) {
}
I'm curious about the significance of the :
in alertCtrl: AlertController
. Can you shed some light on this?