JSNotificationOptions constructor

JSNotificationOptions({
  1. List<JSNotificationAction>? actions,
  2. int? badge,
  3. String? body,
  4. Map<String, dynamic>? data,
  5. JSNotificationDirection? dir,
  6. String? icon,
  7. String? image,
  8. String? lang,
  9. bool? renotify,
  10. bool? requireInteraction,
  11. bool? silent,
  12. String? tag,
  13. int? timestamp,
  14. VibratePattern? vibrate,
})

Implementation

JSNotificationOptions({
  this.actions,
  this.badge,
  this.body,
  this.data,
  this.dir,
  this.icon,
  this.image,
  this.lang,
  this.renotify,
  this.requireInteraction,
  this.silent,
  this.tag,
  this.timestamp,
  this.vibrate,
});