showNotification static method

Future<void> showNotification(
  1. String title, {
  2. String? dir,
  3. String? body,
  4. String? lang,
  5. String? tag,
  6. String? icon,
})

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;
}