
The Toast API provides a notification pop up for displaying important information to a user. Just like real toast!
PWA Elements are required for Toast plugin to work.
import { Plugins } from '@capacitor/core';
const { Toast } = Plugins;
async show() {
  await Toast.show({
    text: 'Hello!'
  });
}