# notification

## Methods <a href="#z1a5y" id="z1a5y"></a>

## show(options) <a href="#tkp0d" id="tkp0d"></a>

Display a notification window

* `options` Object
  * `title` string - Notification window title
  * `body` string - Notification window description
  * `icon` URL/base64 - Notification window icon, supporting URL or base64 format (optional)
  * `mute` boolean - Sound effect (optional)
  * `duration` Integer - Auto-hide duration (milliseconds) (optional)
* Returns `Promise<>`

```javascript
await eagle.notification.show({
    title: "Basic Notification",
    body: "Notification from the Plugin process",
    mute: false,
    duration: 3000,
    icon: "https://"
});
```

***
