The action that is activated when users click to the notification pop-up.
Examples
// To pop an error message on Coin98 connection failure
window.message({
type: 'error',
description: 'Coin98 Wallet is not connected.',
})
// To pop an warning notification on Phantom installation and direct to Phantom homepage
window.notify({
type: 'warning',
description: 'Phantom Wallet is not installed.',
onClick: () => window.open('https://phantom.app/', '_blank'),
})