📅  最后修改于: 2022-03-11 14:48:21.577000             🧑  作者: Mango
constructor(public toastController: ToastController) {}
async presentToast() {
const toast = await this.toastController.create({
message: 'Your settings have been saved.',
duration: 2000
});
toast.present();
}