Hide the currently displayed toast.
my.showToast({ content: 'Processing...', duration: 10000 }); // Hide early when done setTimeout(() => { my.hideToast(); }, 2000);