showNotification static method
Shows a notification via "Notification API" of the browser.
Implementation
static Future<void> showNotification(
String title, {
String? dir,
String? body,
String? lang,
String? tag,
String? icon,
}) async {
final options = web.NotificationOptions();
if (dir != null) {
options.dir = dir;
}
if (body != null) {
options.body = body;
}
if (lang != null) {
options.lang = lang;
}
if (tag != null) {
options.tag = tag;
}
if (icon != null) {
options.icon = icon;
}
final notification = web.Notification(title, options);
void fn(web.Event _) {
onSelectNotification?.call(
NotificationResponse(
notificationResponseType:
NotificationResponseType.selectedNotification,
payload: notification.lang,
),
);
notification.close();
}
notification.onclick = fn.toJS;
}