i want to add toast message on click of a button:
I tried this but getting error on show method:
It says:
message: 'Property ‘show’ does not exist on type ‘Toast’.
this.toast.show(‘Im a toast’, ‘5000’, ‘center’).subscribe( toast => { console.log(toast);
I have used Import and added it in constructor also as described in the docs:
import { Toast } from ‘@ionic-native/toast’;
constructor(private toast: Toast) { }
…
this.toast.show(‘I’m a toast’, ‘5000’, ‘center’).subscribe(
toast => {
console.log(toast);
}
);
How should I do this…
Thanks in Advance.